Skip to main content
https://img.shields.io/badge/Stage-Sandbox-yellow.svg

Eiffellib is a python library for subscribing to and publishing Eiffel events to a message-broker.

Description

Eiffellib solves the problem of publishing Eiffel events and subscribing to events, removing the need of knowing how to connect to a message-broker or how to utilize the protocol it supplies.

With Eiffellib you can start subscribing to and publish valid Eiffel messages quickly and to get a feel for the event protocol.

It is designed to be fast and easy to start using while still being production quality.

Documentation: https://eiffellib.readthedocs.io/en/latest/

Features

  • Simple subscription and publishing of Eiffel events.

  • Event building assistance with event validation on receive and publish.

  • Following a context link.

Installation

Install the project by running:

pip install eiffellib[rabbitmq]

If you only want to use the Eiffel message definitions leave out the optional dependency:

pip install eiffellib

Examples

Start RabbitMQ

In order for these examples to work you need a RabbitMQ server:

# From https://hub.docker.com/_/rabbitmq
docker run -d --hostname my-rabbit --name some-rabbit -p 8080:15672 -p 5672:5672 rabbitmq:3-management

Subscribing to an event

import time
from eiffellib.subscribers import RabbitMQSubscriber


def callback(event, context):
    print(event.pretty)

SUBSCRIBER = RabbitMQSubscriber(host="127.0.0.1", port=5672, ssl=False,
                                queue="eiffel", exchange="amq.fanout")
SUBSCRIBER.subscribe("EiffelActivityTriggeredEvent", callback)
SUBSCRIBER.start()
while True:
    time.sleep(0.1)

Publishing an event

from eiffellib.publishers import RabbitMQPublisher
from eiffellib.events import EiffelActivityTriggeredEvent

PUBLISHER = RabbitMQPublisher(host="127.0.0.1", exchange="amq.fanout", ssl=False,
                              port=5672, routing_key=None)
PUBLISHER.start()
ACTIVITY_TRIGGERED = EiffelActivityTriggeredEvent()
ACTIVITY_TRIGGERED.data.add("name", "Test activity")
PUBLISHER.send_event(ACTIVITY_TRIGGERED)
PUBLISHER.wait_for_unpublished_events()

Deprecation of routing key

The “routing_key” argument in the RabbitMQPublisher class has been deprecated.

This deprecation also affects the default value of the “routing_key” argument and you will be getting warnings while running.

The reason for this change is due to a misunderstanding of how routing keys are supposed to be used when eiffellib was first created.

Each event will now be able to generate their own routing key every time the event is sent.

This routing key is by default “eiffel._.$event_type._._” where the different values are “eiffel.$family.$event_type.$tag.$domainid”.

Please refer to https://eiffel-community.github.io/eiffel-sepia/rabbitmq-message-broker.html for more information about routing keys.

To change to the new routing key behavior (and thus removing the warning), please set “routing_key” to “None” when initializing a new RabbitMQPublisher.

PUBLISHER = RabbitMQPublisher(host="127.0.0.1", exchange="amq.fanout", ssl=False,
                              port=5672, routing_key=None)

In order to change “$family”, “$tag” or “$domainid” in the routing key, they have to be set on the events.

PUBLISHER = RabbitMQPublisher(host="127.0.0.1", exchange="amq.fanout", ssl=False,
                              port=5672, routing_key=None)
EVENT = EiffelActivityTriggeredEvent(family="myfamily", tag="mytag", domain_id="mydomain")
PUBLISHER.send_event(EVENT)

Contribute

Support

If you are having issues, please let us know. There is a mailing list at: eiffel-pythonlib-maintainers@google-groups.com or just write an Issue.

Release files for eiffellib 3.0.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for eiffellib 3.0.0
File Size Uploaded
eiffellib-3.0.0.tar.gz 56.0 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for eiffellib 3.0.0
File Interpreter ABI Platform
eiffellib-3.0.0-py2.py3-none-any.whl Python 2, Python 3 none any Details

Total release size: 276.8 kB

Release files / eiffellib-3.0.0.tar.gz

Download URL eiffellib-3.0.0.tar.gz
Size 56.0 kB
Tags Source
SHA-256 checksum
How to use checksums
8584124b4ec5301efb5944fac749abe46939a7663ed52039ea4a9f02a6d1703c
BLAKE2b-256 checksum
How to use checksums
c6d382d3f0137c7cd5efc1c37ecb784acac8ac83557163ef098e9d713f62fd66
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / eiffellib-3.0.0-py2.py3-none-any.whl

Download URL eiffellib-3.0.0-py2.py3-none-any.whl
Size 220.8 kB
Tags Python 2 Python 3
SHA-256 checksum
How to use checksums
b031fe9ebf7f2ec9ecd492150e9a06afcab2689887f9c283f3b839208c561b76
BLAKE2b-256 checksum
How to use checksums
c798dcf504e77cdfac18e4f6b83ae1336981c2af9dd4691aef8653aba9f92a73
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release history Release notifications | RSS feed

This release

3.0.0 This release

2 release files

2.4.1

2 release files

2.4.0

2 release files

2.3.0

2 release files

2.2.0

2 release files

2.1.0

2 release files

2.0.1

2 release files

2.0.0

2 release files

1.2.0

2 release files

1.1.1

2 release files

1.1.0

2 release files

1.0.2

2 release files

1.0.1

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page