Skip to content

Latest commit

 

History

History
48 lines (38 loc) · 1.47 KB

README.md

File metadata and controls

48 lines (38 loc) · 1.47 KB

asyncbbb - async BigBlueButton API Client for Python

Package version Supported Python versions Supported Python versions

Installation

pip install asyncbbb

Usage

import asyncio

from asyncbbb import BigBlueButton, BigBlueButtonException

async def test():
    bbb = BigBlueButton(
        "https://<HOSTNAME>/bigbluebutton", "<SHARED_SECRET>"
    )


    try:
        response = await bbb.create(name="Test Meeting", meeting_id="TestMeeting", allow_requests_without_session=True)
    except BigBlueButtonException as e:
        if e.message_key == "idNotUnique":
            pass

    data = await bbb.join(full_name="Sebastian Lübke", meeting_id="TestMeeting", redirect=False, role="MODERATOR")
    print(data)

asyncio.run(test())

TODO

Write tests