Skip to main content

WAMP (Web Application Messaging Protocol) utilities

Project description

https://travis-ci.org/ef-ctx/tornwamp.svg?branch=master https://coveralls.io/repos/github/ef-ctx/tornwamp/badge.svg?branch=master https://img.shields.io/pypi/v/tornwamp.svg https://img.shields.io/pypi/pyversions/tornwamp.svg https://img.shields.io/pypi/dm/tornwamp.svg

TornWAMP

This Python module implements parts of WAMP (Web Application Messaging Protocol).

TornWAMP provides means of having an API which interacts with WAMP-clients (e.g. Autobahn).

TornWAMP is not a WAMP Client nor a WAMP Router.

Although this code was implemented to be used with Websockets and Tornado (Web framework), it can also be used in other ways.

How to install

Using pip:

pip install tornwamp

Or from the source-code:

git clone https://github.com/ef-ctx/tornwamp.git
cd tornwamp
python setup.py install

Example of usage

An example of how to build a server using TornWAMP (wamp.py):

import tornado
from tornwamp import handler

class SampleHandler(handler.WAMPHandler):
    pass

application = tornado.web.Application([
    (r"/ws", SampleHandler),
])

if __name__ == "__main__":
    application.listen(8888)
    tornado.ioloop.IOLoop.instance().start()

Which can be run:

python wamp.py

From the client perspective, you’d be able to use Autobahn JavaScript library to connect to the server using:

var connection = new autobahn.Connection({
  url: "ws://0.0.0.0:8888/ws",
  realm: "sample"
});

Read more

For more information on how the library works internally refer to docs <docs/> directory inside this package.

License

Copyright 2015, Education First

Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

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

tornwamp-2.1.0.tar.gz (25.8 kB view details)

Uploaded Source

File details

Details for the file tornwamp-2.1.0.tar.gz.

File metadata

  • Download URL: tornwamp-2.1.0.tar.gz
  • Upload date:
  • Size: 25.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.5

File hashes

Hashes for tornwamp-2.1.0.tar.gz
Algorithm Hash digest
SHA256 10ab4afae4d66b2b28afd3235c17524e7c04a91784c8749381c595585ebe991c
MD5 ada33d71bcc470c5c8e424a43a5d1617
BLAKE2b-256 f132757a404f2c3ca6ef1fbc3c1b0bb870c6768524cf275173cd1cc637175cd8

See more details on using hashes here.

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