Skip to main content

API for bigbluebutton.

Project description

bigbluebutton
-------------

The work of this project is derivated from https://github.com/schallis/django-bigbluebutton 98f2259fa3 by Steve Challis.

It is a wrapper for accessing the API of bigbluebutton http://code.google.com/p/bigbluebutton/wiki/API


A simple example ::

import argparse
from bigbluebutton import Meeting_Setup, Meeting
import bbb_settings


if __name__ == '__main__':
PARSER = argparse.ArgumentParser(description='creates and join a session')
PARSER.add_argument('--meeting_name', dest="meeting_name", type=str, required=True,
help='name of the meeting')
PARSER.add_argument('--meeting_id', dest='meeting_id', required=True,
help='id for the meeting')
PARSER.add_argument('--moderator', dest='moderator', required=True,
help='name of the meeting moderator')
PARSER.add_argument( '--moderator_password', dest='moderator_password', required=True,
help='password for moderator')
PARSER.add_argument( '--attendee_password', dest='attendee_password', required=True,
help='password for attendee')

ARGS = PARSER.parse_args()

session = Meeting_Setup(bbb_settings.BBB_API_URL, bbb_settings.SALT,
ARGS.meeting_name, ARGS.meeting_id,
ARGS.attendee_password, ARGS.moderator_password)
session.create_meeting()
print "meeting expires if noone joins in"

meeting = Meeting(bbb_settings.BBB_API_URL, bbb_settings.SALT)
print "MODERATOR:"
print meeting.join_url(ARGS.meeting_id, ARGS.moderator, ARGS.moderator_password)
print '-------------------------------------------'

print "RANDOM USER:"
print meeting.join_url(ARGS.meeting_id, 'RANDOM', ARGS.attendee_password)
print '-------------------------------------------'

print "ALL MEETINGS"
print meeting.get_meetings()
print '-------------------------------------------'

print "IS RUNNING (meeting is only running after someone has joined in)"
print meeting.is_running(ARGS.meeting_id)
print '-------------------------------------------'

print "END MEETING URL"
print meeting.end_meeting_url(ARGS.meeting_id, ARGS.moderator_password)
print '-------------------------------------------'


if meeting.is_running(ARGS.meeting_id):
print "END MEETING"
meeting.end_meeting(ARGS.meeting_id, ARGS.moderator_password)
print '-------------------------------------------'

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

bigbluebutton-0.3.0.zip (8.8 kB view hashes)

Uploaded Source

bigbluebutton-0.3.0.tar.gz (5.4 kB view hashes)

Uploaded Source

bigbluebutton-0.3.0.tar.bz2 (5.5 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page