Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/101t/bigbluebutton-api-python
👨🏫 BigBlueButton Python API
https://github.com/101t/bigbluebutton-api-python
api bigbluebutton bigbluebutton-api hacktoberfest pypi python python-library
Last synced: 20 days ago
JSON representation
👨🏫 BigBlueButton Python API
- Host: GitHub
- URL: https://github.com/101t/bigbluebutton-api-python
- Owner: 101t
- License: lgpl-3.0
- Created: 2018-01-20T15:53:12.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-10-02T01:14:58.000Z (3 months ago)
- Last Synced: 2024-12-11T10:24:19.294Z (29 days ago)
- Topics: api, bigbluebutton, bigbluebutton-api, hacktoberfest, pypi, python, python-library
- Language: Python
- Homepage:
- Size: 70.3 KB
- Stars: 23
- Watchers: 8
- Forks: 33
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# BigBlueButton Python API
Python wrapper for BigBlueButton api, more information about BigBlueButton api can be found [here](http://docs.bigbluebutton.org/dev/api.html 'API doc').
## Installation
The project has been uploaded to pypi, and you can view the library from [here](https://pypi.org/project/bigbluebutton-api-python/ 'pypi'). You can simply download the library by
```shell
pip install bigbluebutton_api_python
```You can also install the latest from this repo with
```shell
pip install git+git://github.com/101t/bigbluebutton-api-python.git
```## Example
Example to use the library:
```python
from bigbluebutton_api_python import BigBlueButtonb = BigBlueButton('your BBB server url', 'your server credential')
# get api version
print(b.get_api_version().get_version())
```
## Others Example```python
from bigbluebutton_api_python import BigBlueButtonb = BigBlueButton('your BBB server url', 'your server credential')
#params
dict = { 'moderatorPW':'pw' }
#use create meeting
print(b.create_meeting ('room',params=dict))
#get info
print(b.get_meeting_info('room'))
#get url
print(b.get_join_meeting_url('user','fake2', 'pw'))
```
More Docs [here](https://www.pydoc.io/pypi/bigbluebutton-api-python-0.0.2/autoapi/bigbluebutton/index.html).