All Projects β†’ 101t β†’ bigbluebutton-api-python

101t / bigbluebutton-api-python

Licence: LGPL-3.0 license
πŸ‘¨β€πŸ« BigBlueButton Python API

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to bigbluebutton-api-python

bigbluebutton-api-php
Unofficial (but better) PHP API for @bigbluebutton
Stars: ✭ 15 (-28.57%)
Mutual labels:  bigbluebutton, bigbluebutton-api
hera-workflows
Hera is an Argo Workflows Python SDK. Hera aims to make workflow construction and submission easy and accessible to everyone! Hera abstracts away workflow setup details while still maintaining a consistent vocabulary with Argo Workflows.
Stars: ✭ 252 (+1100%)
Mutual labels:  pypi
Nbdev
Create delightful python projects using Jupyter Notebooks
Stars: ✭ 3,061 (+14476.19%)
Mutual labels:  pypi
mkdocs-rss-plugin
MkDocs plugin to generate a RSS feeds for created and updated pages, using git log and YAML frontmatter (page.meta).
Stars: ✭ 43 (+104.76%)
Mutual labels:  pypi
MyJWT
A cli for cracking, testing vulnerabilities on Json Web Token(JWT)
Stars: ✭ 92 (+338.1%)
Mutual labels:  pypi
distfit
distfit is a python library for probability density fitting.
Stars: ✭ 250 (+1090.48%)
Mutual labels:  pypi
Mitype
Typing speed test in terminal
Stars: ✭ 241 (+1047.62%)
Mutual labels:  pypi
bigbluebutton-docker
merged into https://github.com/bigbluebutton/docker
Stars: ✭ 100 (+376.19%)
Mutual labels:  bigbluebutton
pyfma
Fused multiply-add (with a single rounding) for Python.
Stars: ✭ 18 (-14.29%)
Mutual labels:  pypi
Random-Plex-Movie
Python App which chooses a random movie from your Plex Library.
Stars: ✭ 17 (-19.05%)
Mutual labels:  pypi
PyGLM
Fast OpenGL Mathematics (GLM) for Python
Stars: ✭ 167 (+695.24%)
Mutual labels:  pypi
yavdb
Yet Another Vulnerability Database
Stars: ✭ 14 (-33.33%)
Mutual labels:  pypi
django-freeze
🧊 convert your dynamic django site to a static one with one line of code.
Stars: ✭ 81 (+285.71%)
Mutual labels:  pypi
Cn2an
πŸ“¦ εΏ«ι€Ÿθ½¬εŒ–γ€ŒδΈ­ζ–‡ζ•°ε­—γ€ε’Œγ€Œι˜Ώζ‹‰δΌ―ζ•°ε­—γ€ο½ž (ζœ€ζ–°η‰Ήζ€§οΌšεˆ†ζ•°οΌŒζ—₯ζœŸγ€ζΈ©εΊ¦η­‰θ½¬εŒ–οΌ‰
Stars: ✭ 249 (+1085.71%)
Mutual labels:  pypi
craft
The universal Sentry release CLI πŸš€
Stars: ✭ 117 (+457.14%)
Mutual labels:  pypi
See
Python's dir() for humans. (GitHub mirror)
Stars: ✭ 240 (+1042.86%)
Mutual labels:  pypi
gagar
Standalone graphical agar.io Python client/bot using GTK and agarnet
Stars: ✭ 21 (+0%)
Mutual labels:  pypi
vfxwindow
Python Qt Window class for compatibility between VFX programs
Stars: ✭ 80 (+280.95%)
Mutual labels:  pypi
pysonDB
A Simple , ☁️ Lightweight , πŸ’ͺ Efficent JSON based database for 🐍 Python. PysonDB-V2 has been released ⬇️
Stars: ✭ 293 (+1295.24%)
Mutual labels:  pypi
ndjson
ndjson with the same interface as the builtin json module
Stars: ✭ 59 (+180.95%)
Mutual labels:  pypi

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].