Python wrapper for BigBlueButton api, more information about BigBlueButton api can be found here.
The project has been uploaded to pypi, and you can view the library from here. You can simply download the library by
pip install bigbluebutton_api_python
Example to use the library:
from bigbluebutton_api_python import BigBlueButton
b = BigBlueButton('your BBB server url', 'your server credential')
# get api version
print(b.get_api_version().get_version())
from bigbluebutton_api_python import BigBlueButton
b = 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.