Skip to content
This repository has been archived by the owner on Dec 30, 2023. It is now read-only.

Jacob-ru/bigbluebutton-api-python

Β 
Β 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

27 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

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

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%