{"id":16942428,"url":"https://github.com/defnull/bbbctl","last_synced_at":"2025-07-20T13:34:59.806Z","repository":{"id":57414280,"uuid":"395369949","full_name":"defnull/bbbctl","owner":"defnull","description":"BigBlueButton API command-line client","archived":false,"fork":false,"pushed_at":"2024-12-12T16:13:09.000Z","size":29,"stargazers_count":8,"open_issues_count":0,"forks_count":1,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-03-19T16:02:08.550Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/defnull.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-08-12T15:48:53.000Z","updated_at":"2024-12-17T07:50:51.000Z","dependencies_parsed_at":"2025-02-20T01:35:07.851Z","dependency_job_id":"ba0026be-25bb-4895-99ad-19df32b74171","html_url":"https://github.com/defnull/bbbctl","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/defnull%2Fbbbctl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/defnull%2Fbbbctl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/defnull%2Fbbbctl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/defnull%2Fbbbctl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/defnull","download_url":"https://codeload.github.com/defnull/bbbctl/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248466955,"owners_count":21108566,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-13T21:11:54.937Z","updated_at":"2025-04-11T19:32:40.396Z","avatar_url":"https://github.com/defnull.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# BigBlueButton REST API command-line client\n\nThis is a small but useful command-line client for controlling meetings and recordings on a [BigBlueButton](https://docs.bigbluebutton.org/) server or cluster directly via the [REST API](https://docs.bigbluebutton.org/dev/api.html). It allows administrators to bypass front-end applications ([greenlight](https://github.com/bigbluebutton/greenlight), [moodle](https://moodle.com/certified-integrations/bigbluebutton/) or alternatives) and directly access the backing BBB servers for administrative tasks, monitoring or testing.\n\nThe module can also be imported as a python library, but please note that this project is not yet considered stable in any way. A stable and more usable API for python scripting might follow.\n\n## Install\n\n```sh\n# Install via pip\nsudo pip install -U bbbctl\n# or manually:\nsudo curl -L https://raw.githubusercontent.com/defnull/bbbctl/master/src/bbbctl.py -o /usr/local/bin/bbbctl\nsudo chmod +x /usr/local/bin/bbbctl\n```\n\n## Usage\n\n```sh\n# Only required for external BBB servers:\nexport BBBCTL_SERVER=\"https://bbb.example.com/\"\nexport BBBCTL_SECRET=\"...\"\n\nbbbctl meeting list    # Test your secret by listing current meetings\nbbbctl -h              # Print help for a list of commands\n```\n\nIf run directly on a BBB server with sufficient permissions, server URL and secret will be fetched from local BBB config files automatically.\n\n## Command overview\n\nYou can get detailed help and a list of all parameters with `bbbctl -h` or `bbbctl \u003ccommand\u003e -h`.\n\n- `meeting` Create, list, join, inspect or end meetings\n  - `list` List all meetings\n  - `info \u003cmeetingID\u003e` Show info about a meeting\n  - `create \u003cmeetingID\u003e \u003ctitle\u003e` Create a new meeting\n  - `join \u003cmeetingID\u003e \u003cdisplayName\u003e` Generate join links\n  - `end \u003cmeetingID\u003e` Forcefully end a meeting\n  - `chat \u003cmeetingID\u003e \u003cmessage\u003e` Send a chat message to a running meeting (BBB 3.0)\n  - `nuke` Forcefully end ALL meetings (be careful)\n- `record` Work with recordings\n  - `list` List all recordings\n  - `info \u003crecordID\u003e` Show info about a recording\n  - `publish \u003crecordID\u003e` Publish an unpublished recording\n  - `unpublish \u003crecordID\u003e` Unpublish (hide) recording)\n  - `delete \u003crecordID\u003e` Delete a recording (be careful)\n\n## Output format\n\nThe default output format is a human readable plain text format. You can switch to a more compact version with `--format=compact`. Other formats that are better suited for scripted usage are also supported: `json`, `jsonline` or `xml`\n\n# License\n\nCopyright (c) 2020-2022, Marcel Hellkamp.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdefnull%2Fbbbctl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdefnull%2Fbbbctl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdefnull%2Fbbbctl/lists"}