Skip to main content

Python client for Janus.

Project description

Python client for Janus.

dev

Setup a venv:

$ mkvirtualenv janus
(janus)$ pip install -e .[test]

and test it:

(janus)$ py.test test/ --cov janus --cov-report term-missing --pep8

usage

Typical usage is to create a representation of your Janus Plugin:

class MyPlugin(janus.Plugin):

    name = 'janus.plugin.krazyeyezkilla'

    def sup(self, greets)
        self.send_message({'wat': greets})


my_plugin = MyPlugin()

setup a Session:

session = janus.Session('ws://127.0.0.1', secret='janusrocks')
session.register_plugin(my_plugin)

keep it alive:

session_ka = janus.KeepAlive(session)
session_ka.daemon = True
session_ka.start()

and then use your plugin:

my_plugin.sup('dawg')

release

Tests pass:

py.test test/ --cov janus --cov-report term-missing --pep8

so update __version__ in janus.py. Commit and tag it:

git commit -am "release v{version}"
git tag -a v{version} -m "release v{version}"
git push --tags

and travis will publish it to pypi.

Project details


Download files

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

Source Distribution

janus-gateway-0.1.2.tar.gz (8.9 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