Skip to main content

Elastic Queue is a library to bear a PubSub projects.

Project description

# EQueue
Elastic Queue is a library to bear a PubSub projects

### How to use it

Install via PIP

```shell
$ pip install equeue
```

#### Producing

Using ipython

```python

In [1]: from equeue.rabbit.publisher import Publisher

In [2]: pub = Publisher(host='localhost', username='guest', password='guest', queue_name='t')

In [3]: pub.put(message_dict={'id': 1})
Out[3]: <promise@0x10ef18b78>

```

#### By poll

Using ipython

```python

In [1]: from equeue.rabbit.subscriber import Subscriber

In [2]: sub = Subscriber(host='localhost', username='guest', password='guest', queue_name='t')

In [3]: msg = sub.get()

In [4]: if msg:
...: print(msg)
...:
```

#### Consuming

Creating a main.py you'd see better.

```python

from equeue.rabbit.subscriber import Subscriber

def events_out(callback, message, delivery_tag):
print(message)
print(delivery_tag)
callback.ack(delivery_tag)

def main():

sub = Subscriber(host='localhost', username='guest',
password='guest', queue_name='t')

sub.setup_consumer(callback=events_out)
while True:
sub.consume()
if __name__ == '__main__':
main()

```

Then

```shell
$ python main.py
```

### Developing mode

Running tests

To run the project's test you will need to have pytest installed. The instalation is simple as :

```shell
$ pip install pytest
```

And to run the tests you need to ajust yout `PYTHONPATH`

```shell
$ PYTHONPATH=equeue py.test
```

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

equeue-0.1.5.tar.gz (5.5 kB view details)

Uploaded Source

File details

Details for the file equeue-0.1.5.tar.gz.

File metadata

  • Download URL: equeue-0.1.5.tar.gz
  • Upload date:
  • Size: 5.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for equeue-0.1.5.tar.gz
Algorithm Hash digest
SHA256 06a6034306a483d0f6f86fb015dbc6ba0edcf1e7be152d1f7514c020823dd36a
MD5 49e0970d83774088d12bff0eaed5b63c
BLAKE2b-256 a6f54dff1f1585895df46adbe7316669c74c68d35abe98783c0ed6987d21caf2

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