101t / bigbluebutton-api-python

πŸ‘¨β€πŸ« BigBlueButton Python API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

BigBlueButton Python API

Python wrapper for BigBlueButton api, more information about BigBlueButton api can be found here.

Installation

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

You can also install the latest from this repo with

pip install git+git://github.com/101t/bigbluebutton-api-python.git

Example

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())

Others Example

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.

About

πŸ‘¨β€πŸ« BigBlueButton Python API

License:GNU Lesser General Public License v3.0


Languages

Language:Python 100.0%