Skip to main content

Python Rabbit wrapper library to simplify to use Exchanges and Queues with decorators

Project description

Hijiki

Python Rabbit wrapper library to simplify to use Exchanges and Queues with decorators

Configurations

Hijiki uses environment variables to configure connection with BROKER.

  • BROKER_PORT
  • BROKER_PWD
  • BROKER_USERNAME
  • BROKER_SERVER

If server is not present the connection url will be a default, and to others configs will be changed for "teste".

How to use

Publisher

The example demonstrate how to publish a simple message to topic "teste1_event" with a json message:

pub = Publisher()
pub.publish_message('teste1_event', '{"value": "Esta é a mensagem"}')

Consumer

Consumer uses a configuration to define QUEUES and Exchanges and the consumer is a decorator for the queue.

from hijiki.broker.hijiki_rabbit import HijikiQueueExchange, HijikiRabbit

qs = [HijikiQueueExchange('teste1', 'teste1_event'), HijikiQueueExchange('teste2', 'teste2_event')]
gr = HijikiRabbit().with_queues_exchange(qs) \
    .with_username("rabbitmq") \
    .with_password("rabbitmq") \
    .with_host("localhost") \
    .with_port(5672) \
    .build()

class MyConsumer():
    @gr.task(queue_name='teste1')
    def my_consumer(self):
        print("consumer 1 executed")

    @gr.task(queue_name='teste2')
    def my_consumer2(self):
        print("consumer 2 executed")

if __name__ == '__main__':
    MyConsumer()
    gr.run()

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

hijiki-1.0.37.tar.gz (17.6 kB view details)

Uploaded Source

Built Distribution

hijiki-1.0.37-py3-none-any.whl (18.3 kB view details)

Uploaded Python 3

File details

Details for the file hijiki-1.0.37.tar.gz.

File metadata

  • Download URL: hijiki-1.0.37.tar.gz
  • Upload date:
  • Size: 17.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for hijiki-1.0.37.tar.gz
Algorithm Hash digest
SHA256 c6e45db146aea869685cfb0e75967d739fd9bb50739340b650a4ff5f0c4481a4
MD5 b44eac9a41e4ecf0d0527e1609876000
BLAKE2b-256 4e6d35c8db77e972703c111920d5b411e394bd4e0dba53e95bd9cf34c073701e

See more details on using hashes here.

File details

Details for the file hijiki-1.0.37-py3-none-any.whl.

File metadata

  • Download URL: hijiki-1.0.37-py3-none-any.whl
  • Upload date:
  • Size: 18.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for hijiki-1.0.37-py3-none-any.whl
Algorithm Hash digest
SHA256 9621bedb56e889502932d42a03e126adcf2e7c96ce3a7a514b8743075f77ec5f
MD5 8a78714a41c3ccadad630712384dec90
BLAKE2b-256 b6af77922b84bb03bd8002e2bc3e21316794c59050ebf067256f57be50c1cca9

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