Skip to content

luebke-dev/asyncbbb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

Releases

No releases published

Sponsor this project

Packages

No packages published