bbbctl 0.3.1__tar.gz → 0.3.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: bbbctl
3
- Version: 0.3.1
3
+ Version: 0.3.2
4
4
  Summary: BigBlueButton API command-line client
5
5
  Home-page: https://github.com/defnull/bbbctl
6
6
  Author: Marcel Hellkamp
@@ -12,6 +12,7 @@ Classifier: Operating System :: OS Independent
12
12
  Requires-Python: >=3.6
13
13
  Description-Content-Type: text/markdown
14
14
  License-File: LICENSE
15
+ Dynamic: license-file
15
16
 
16
17
  # BigBlueButton REST API command-line client
17
18
 
@@ -52,6 +53,7 @@ You can get detailed help and a list of all parameters with `bbbctl -h` or `bbbc
52
53
  - `create <meetingID> <title>` Create a new meeting
53
54
  - `join <meetingID> <displayName>` Generate join links
54
55
  - `end <meetingID>` Forcefully end a meeting
56
+ - `chat <meetingID> <message>` Send a chat message to a running meeting (BBB 3.0)
55
57
  - `nuke` Forcefully end ALL meetings (be careful)
56
58
  - `record` Work with recordings
57
59
  - `list` List all recordings
@@ -37,6 +37,7 @@ You can get detailed help and a list of all parameters with `bbbctl -h` or `bbbc
37
37
  - `create <meetingID> <title>` Create a new meeting
38
38
  - `join <meetingID> <displayName>` Generate join links
39
39
  - `end <meetingID>` Forcefully end a meeting
40
+ - `chat <meetingID> <message>` Send a chat message to a running meeting (BBB 3.0)
40
41
  - `nuke` Forcefully end ALL meetings (be careful)
41
42
  - `record` Work with recordings
42
43
  - `list` List all recordings
@@ -1,6 +1,6 @@
1
1
  [metadata]
2
2
  name = bbbctl
3
- version = 0.3.1
3
+ version = 0.3.2
4
4
  author = Marcel Hellkamp
5
5
  author_email = marc@gsites.de
6
6
  description = BigBlueButton API command-line client
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: bbbctl
3
- Version: 0.3.1
3
+ Version: 0.3.2
4
4
  Summary: BigBlueButton API command-line client
5
5
  Home-page: https://github.com/defnull/bbbctl
6
6
  Author: Marcel Hellkamp
@@ -12,6 +12,7 @@ Classifier: Operating System :: OS Independent
12
12
  Requires-Python: >=3.6
13
13
  Description-Content-Type: text/markdown
14
14
  License-File: LICENSE
15
+ Dynamic: license-file
15
16
 
16
17
  # BigBlueButton REST API command-line client
17
18
 
@@ -52,6 +53,7 @@ You can get detailed help and a list of all parameters with `bbbctl -h` or `bbbc
52
53
  - `create <meetingID> <title>` Create a new meeting
53
54
  - `join <meetingID> <displayName>` Generate join links
54
55
  - `end <meetingID>` Forcefully end a meeting
56
+ - `chat <meetingID> <message>` Send a chat message to a running meeting (BBB 3.0)
55
57
  - `nuke` Forcefully end ALL meetings (be careful)
56
58
  - `record` Work with recordings
57
59
  - `list` List all recordings
@@ -386,7 +386,7 @@ def cmd_meet_create(api, args):
386
386
  createTime=created.find("createTime").text,
387
387
  role="MODERATOR",
388
388
  )
389
- print(name + ":", link)
389
+ print(f"{name}: {link}")
390
390
 
391
391
 
392
392
  def cmd_meet_join(api, args):
File without changes
File without changes