bigbluebutton-api-python icon indicating copy to clipboard operation
bigbluebutton-api-python copied to clipboard

V2 proposal

Open IJOL opened this issue 4 years ago • 1 comments

After some tests and brief review and screening the code, for my use case the Api it's not easy to use, for example to get the meetings list I've ended doing something like :

`
b = BigBlueButton('https://XXXXXXXXXXXXXX/bigbluebutton/', 'XXXXXXXXXXXXXXXXXXXXXXXXX')

meetings=b.get_meetings().get_meetings() 

the first get_meetings get the Reponse object from which we get the meeting Array..

I would like to have a more natural approach as

meetings=b.get_meetings() Is a big API change...

IJOL avatar Jan 04 '21 16:01 IJOL

@IJOL i created an asyncio api wrapper with an easier approch. https://github.com/SebastianLuebke/asyncbbb (async, type hinted and with support for ide auto completion

luebke-dev avatar Jul 25 '22 13:07 luebke-dev