1

I'm trying to use an API called BigBLueButton in my website, and after a little researches, i figured how to install it in my project using the command pip install django-bigbluebutton. I add it to my INSTALLED-APP in setting.py. Until this step, everything is OK and i have no errors. But i don't know how use its models and its views and how to show it in my website. Does anyone have an idea of ​​the next steps? Thank you everyone.

Gritli Nadjat
  • 31
  • 1
  • 4

1 Answers1

2

According to docs , it provides a admin section which is named as Meeting. So fron there you can manage meetings (create, join, share, etc.)

Akshay
  • 71
  • 3
  • So. all i need after the installation and setting up BBB is to import the Meeting class in my view and start working. Great, thanks for your help, i appreciate it :) – Gritli Nadjat Aug 27 '21 at 15:47
  • Yes and for more information about use of library check [test.py](https://github.com/Execut3/django-bigbluebutton/blob/master/django_bigbluebutton/tests.py) – Akshay Aug 31 '21 at 11:30