Skip to main content

Wrapper to pika for an easy to use RabbitMQ interface.

Project description

Snacks

Snacks is a wrapper around pika to provide a convenient interface for RabbitMQ.

Installation

Snacks is available on PyPI and can be installed with:

pip install snacks

Configuration

from snacks.rabbit import RabbitApp

# These are all the default values if none are provided.
rabbit = RabbitApp(
    host='localhost',
    port=5672,
    default_exchange='',
    virtual_host='/',
    username='guest',
    password='guest'
)

Consume From Queues

To decorate a function as a consumer for a queue use the consumer decorator.

@rabbit.consumer('queue.name')
def listen(event: str) -> None:
    print(f'Received request: {event}')

Consume From Generated Queues

To decorate a function as a consumer for a generated queue using given routing keys use the listener decorator.

@rabbit.listener('routing_key')
def listen(event: str) -> None:
    print(f'Received request: {event}')

RPC

To make a decorated function a remote procedure add a return.

@rabbit.listener('routing_key')
def listen(event: str) -> str:
    print(f'Received request: {event}')
    return 'Remote response.'

Type Hint Based Deserialization

If the request body in a decorated function has type hints, snacks will try to map the received data to that type. This has added support for Dataclasses JSON or any other class with a from_json method.

@dataclass_json
@dataclass
class Event:
    type: str
    data: Any


@rabbit.listener('routing_key')
def user_event(event: Event) -> None:
    print(f'Received {event.type} with data {event.data}')

Full Example

from snacks.rabbit import RabbitApp

# Setup
rabbit = RabbitApp(default_exchange='snacks')
queue = 'snacks'
key = 'snackey'
rabbit.exchange_declare(exchange_type='topic', durable=True)
rabbit.queue_declare(queue=queue, durable=True)
rabbit.queue_bind(queue=queue, routing_key=key)


@rabbit.consumer([queue])
def listen(event: str) -> str:
    print(f'Received request: {event}')
    return 'Rabbits and pikas are snacks.'


if __name__ == '__main__':
    r = rabbit.publish_and_receive('To a python.', key, serialize=bytes.decode)
    print(f'Received response: {r}')

Output:

Received request: To a python.
Received response: Rabbits and pikas are snacks.

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

snacks-0.3.2.tar.gz (8.7 kB view details)

Uploaded Source

File details

Details for the file snacks-0.3.2.tar.gz.

File metadata

  • Download URL: snacks-0.3.2.tar.gz
  • Upload date:
  • Size: 8.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.4.2 requests/2.24.0 setuptools/51.0.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

File hashes

Hashes for snacks-0.3.2.tar.gz
Algorithm Hash digest
SHA256 daafa67df81e4601c26c868ce73b2fed52b16a5deeff8ea60d938dd38e20703b
MD5 06b132730ed16da3944666d3e493aa4b
BLAKE2b-256 08dcc02814eb5ef066fa2498bc79d98e6620b552819ecf8408f4766c444b0c1a

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