Metadata-Version: 2.0
Name: asgi-amqp
Version: 0.2.1
Summary: AMQP-backed ASGI channel layer implementation
Home-page: http://github.com/wwitzel3/asgi_amqp/
Author: Wayne Witzel III
Author-email: wayne@riotousliving.com
License: BSD
Platform: UNKNOWN
Requires-Dist: asgiref (>=0.14.0)
Requires-Dist: jsonpickle (==0.9.3)
Requires-Dist: kombu (==3.0.35)
Requires-Dist: msgpack-python (==0.4.7)
Requires-Dist: six

asgi_amqp
==========

An ASGI channel layer that uses AMQP as its backing store with group support.

Installation
------------

Group support requires the `rabbitmq_lvc` plugin is enabled on your RabbitMQ server.
More information about enabling this plugin can be found on the (RabbitMQ Plugin)[https://www.rabbitmq.com/community-plugins.html] site.

     $ rabbitmq-plugins enable rabbitmq_lvc
     $ pip install asgi_amqp

Usage
-----

You'll need to instantiate the channel layer with at least ``url``,
and other options if you need them.

Example::

    channel_layer = AMQPChannelLayer(
        url="amqp://guest:guest@localhost:5672//",
        }
    )

host
~~~~

The server to connect to as a URL.


