Skip to main content

WAMP RPC and Pub/Sub for Flask

Project description

Travis Python27 Python34 Python35 Python36

Flask-WAMP

Flask apps with WAMP messaging.

For a background as to what WAMP is, please see here.

Remember, The Web Application Messaging Protocl is not just for the Web. So, if you would like your Flask app to be a WAMP component in a larger architecture… then you can! flask-wamp gives you two options:

  1. rRPC or PubSub messaging between Flask Apps, supporting a micro-service architecture for the backend

  2. rRPC or PubSub messaging between your Browser and Flask Apps, supporting async, concurrent calls and real-time updates for the frontend users

For both you’ll need a WAMP Router/Broker Peer, and for that I recommend Crossbar.io.

Use Cases

  • Realtime updates between Browsers (I suggest wampy.js) and Flask Apps

  • Upgrading the power of existing Flask micro-services

Why Not Just WebSockets?

WebSockets are of course a sound implementation for real-time client-server communication. You’ll need some Flask Middleware for this, such as Flask-SocketIO, or flask-sockets. With WAMP, you do not.

You might then struggle to find a mature WebSocket RPC between your components, and even if you do, each component will need to know the other exists and exacrtly the host, port and path to find it on - with WAMP you do not.

With WAMP you also have consistency in technology between front end and back, and inter-communication between backend components.

The only real hurdle you’ll face is getting Crossbar.io up and running with sensible configuration, but there are great support docs for this and the basic usecase for demos and early development is trivial. And this Router/Broker Peer is a compelling reason to choose WAMP as it has sophisticaed messaging patterns and advanced features such as authN/Z and meta events. Regarding the client Peers, wampy.js and flask-wamp make this incredibly straight forward.

Another reason you might want to consider flask-wamp for your Flask Messaging is that under the hood it uses wampy, and wampy can be configured to use either eventlet or Gevent, so if your architecture is already tied to one of these, flask-wamp can use the async networking solution of your choice.

WAMP in general has desirable features that you’d get out-of-the-box, such as load balancing and a variety of auth patterns.

How It Works

This is a standard Flask Extension.

Under the hood you have a single wampy client instance with a WAMP WebSocket connection to Crossbar. So for every instance of your Flask App you have, you also have a single instance of wampy. You must wrap your Flask App in the flask-wamp App to achieve this, providing the Router host and Realm name. This should come from your Flask Config object - see test_flask_wamp.py for an example.

Then, much like with nameko-wamp, you can declare a Flask endpoint/view to fulfill the WAMP Callee or Subscriber Role. This is doesn’t stop you also routing HTTP requests to these views - bargain!

Once you’ve done this it can be communicated with over the WAMP protocol by any other WAMP Caller or Publisher component, whether this is another Flask App or a Browser, and assuming they are all attached to the same Realm. Declarations are done with decorators. What these “views” then do under the decoration is entirelly up to you.

For a Flask Peer to fulfill a Caller or Publisher Role you need a handle on that wampy instance and the API it provides. Again, just like nameko-wamp, we use Dependency Injection so all your views have access to wampy via the g object. For example,

from flask import g

def my_view_function():
    wampy = g.wampy
    wampy.rpc.some_remote_procedure(*args, **kwargs)
    wampy.publish(topic="some topic", message="this is fun!")

    # maybe do other stuff and return something

Every view will have access to wampy, whether it is a decorated view or not. Wampy is already connected to Crossbar so you do not need to use it as a context manager as the wampy docs suggest. See ReadTheDocs for more on wampy’s API.

Running the tests

The test runner uses the Crossbar test fixture provided by wampy.

$ pip install --editable .[dev]
$ py.test ./test -v

or, more simply

$ make tests

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

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

Flask_WAMP-0.1.0-py2.py3-none-any.whl (4.8 kB view hashes)

Uploaded Python 2 Python 3

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