Skip to main content

The zimran-events provides amqp interface

Project description

zimran-events

The zimran-py-events module provides AMQP interface

License: MIT code size

Installation

pip install zimran-events

Usage example

Producer

from zimran.events import AsyncProducer

producer = AsyncProducer(broker_url='')
await producer.connect()

# message publishing
await producer.publish('some.event.routing', {'msg': 'hello, world'})

Consumer

# < 0.4.0

from zimran.events import Consumer
from zimran.events.dto import Exchange

consumer = Consumer(service_name='my-service', broker_url='')
consumer.add_event_handler(
            name='routing-key',
            handler=handler_func,
            exchange=Exchange(
                name='exchange-name',
                type='exchange-type',
                durable=True,
            )
           )

# or

from zimran.events import Consumer

consumer = Consumer(service_name='my-service', broker_url='')

@consumer.event_handler('routing-key')
def handler_func(**kwargs):
  ...



# >= 0.4.0 version


from zimran.events.routing import Router
from zimran.events.consumer AsyncConsumer


router = Router()

@router.event_handler('routing-key')
async def handler(message: aio_pika.IncomingMessage):
  pass


router.add_event_handler('routing-key', some_handler)



async def main():
  consumer = AsyncConsumer(..., router=router)

  await consumer.run()

Code

The code and issue tracker are hosted on GitHub: https://github.com/zimran-tech/zimran-py-events.git

Features

  • AMQP interfaces

For contributors

Setting up development environment

Clone the project:

git clone https://github.com/zimran-tech/zimran-py-events.git
cd zimran-py-events

Create a new virtualenv:

python3 -m venv venv
source venv/bin/activate

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

zimran_events-0.6.0.tar.gz (15.2 kB view details)

Uploaded Source

Built Distribution

zimran_events-0.6.0-py3-none-any.whl (11.8 kB view details)

Uploaded Python 3

File details

Details for the file zimran_events-0.6.0.tar.gz.

File metadata

  • Download URL: zimran_events-0.6.0.tar.gz
  • Upload date:
  • Size: 15.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for zimran_events-0.6.0.tar.gz
Algorithm Hash digest
SHA256 3d741e0ac5206d1533f21d0341d4681eb4bd40782748f4b0a9a3209e0fd47ec2
MD5 52c1858026b2d648968cae1757806e5b
BLAKE2b-256 68ce772e34be195db2da1d44d2d6bd7dc8be88bf1d87a923fb32d9e29214a80e

See more details on using hashes here.

File details

Details for the file zimran_events-0.6.0-py3-none-any.whl.

File metadata

File hashes

Hashes for zimran_events-0.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 07b7d88d5cee36ba0474ecc2afa922ec8c4862cfa33b6f9ba2081dc16bdf8037
MD5 edb82b158ccef831cde01278875ec73a
BLAKE2b-256 4541b4e2eddf66b2d2550616441a6f566212402c2b55c3731974e7b4ea951790

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