From e5dba5d2b7a0d6dac338f34b7cc0253859e48ffb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Germ=C3=A1n=20Guaigua?= Date: Sat, 28 Jul 2018 04:04:14 -0400 Subject: [PATCH] Update Readme.md This information was added for the best understanding --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index 0106784..0f3fc5a 100644 --- a/README.md +++ b/README.md @@ -18,3 +18,19 @@ 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](https://www.pydoc.io/pypi/bigbluebutton-api-python-0.0.2/autoapi/bigbluebutton/index.html). +