Network PubSub and Async Message Passing for Humans
Project description
EventHive
Network PubSub and Async Message Passing for Humans
What is that thing?
eventhive is a Python package that enables Python code to communicate using
Publisher/Subscriber model uniformly, be it in the same process or in different hosts!
Supports external PubSub backends (like Redis), Service Discovery (using python-zeroconf) and application level Message Signing and Encryption (using Python Native AES).
What does it do?
Leverages Python reflection magic and the excelent API created by @dzervas in hooker for event-based programming and expands it to network level event-passing, effectively creating a PubSub-based RPC (Remote Procedure Calling) framework.
It can be used in IoT Development, to Games, to Kubernetes and microservices!
How to Use
Worker
-
Create a minimal
eventhiveYAML configuration for the Worker:connectors: my-hive: pubsub_type: fastapi input_channel: 'worker' init: host: 127.0.0.1 port: 8085 endpoint: /pubsub
-
Register an
eventhiveevent:eventhive.EVENTS.append("worker/action")
-
Create a function with a single argument and annotate it with the
eventhiveevent:@eventhive.hook("worker/action") def work(arg): print("Working with: %s" arg)
-
Start
eventhiveeventhive.init()
Queen
-
Create an
eventhiveYAML configuration for the Queen. Also add a PubSub server in the mix:connectors: my-hive: pubsub_type: fastapi input_channel: 'queen' init: host: 127.0.0.1 port: 8085 endpoint: /pubsub servers: my-hive: pubsub_type: fastapi create: always broadcast: false init: host: 0.0.0.0 port: 8085 endpoint: /pubsub
-
Register an
eventhiveevent implemented by the worker:eventhive.EVENTS.append("my-hive/worker/action")
-
Start
eventhiveeventhive.init()
-
Call the registered event with a
dicteventhive.EVENTS.call("my-hive/worker/action", {"param1":1, "param2":2})
The Worker will print:
Working with: {'param1':1, 'param2':2}
What with the / in the Event names?
A convention exists in eventhive so it can be used as a PubSub for event-based programming
and network message passing engine at the same time. This convention is based on Event names.
The Events are split in 3 categories following a naming convention:
Strictly Local Events
Like bee_stuff in the single-process example. These Events cannot be called from the network.
They have to be defined (eventhive.append("bee_stuff")), implemented (@eventhive.hook("bee_stuff")) and
called (eventhive.EVENTS["bee_stuff"]("arg")) in the same process.
Network Accessible Events
Like Worker Bee's worker-bee/work. These Events have to be defined and implemented by the same process,
but they can be called either from the same process (eventhive.EVENTS["worker-bee/work"]({"random":"dict"})), or
by any other eventhive process in the network as a Remote Event.
Remote Events
Like Queen Bee's my-beehive/worker-bee/work. These Events are not implemented in the process they are
defined (eventhive.append("my-beehive/worker-bee/work")). Calling these Events
(eventhive.EVENTS["my-beehive/worker-bee/work"]({"random":"dict"})) informs eventhive that they
have to travel over my-beehive network and get published to the my-beehive/worker-bee/work channel.
Other eventhive processes that are connected to my-beehive and have input_channel: worker-bee in their configuration, pick up these Events, ditch the Network Name (my-beehive/worker-bee/work becomes worker-bee/work) and consume them like Local Events.
Message Examples
eventhive events are simple JSON messages that can have metadata attached or not.
In the examples below metadata will be available under the key __eventhive__. Disabling metadata or changing the key name
can be configured through the YAML configuration.
No secret set - plaintext messages
eventhive.EVENTS.call("my-hive/worker/action", {"param1":1, "param2":2})
{"param1": 1, "param2": 2, "__eventhive__": {"time": 1680610165.4884348, "version": "0.3.2", "event": "my-hive/worker/action", "id": "d891d47f-64a4-4ecc-88ab-69249da31154"}}
eventhive metadata can be used from a hooked function for accessing event creation time, version checking and duplicate message checking.
Yet, it is planned to move some of these functionalities to the library.
Turning off metadata (i.e eventhive.remove_metadata: true) can save bandwidth, e.g in very limited IoT networks.
With secret set
Setting a secret in a connector in the YAML configuration automatically enables AES Encryption and Message Signing. This is totally transparent to the hooked function, which will continue to accept events like the one described above.
Yet, the messages travelling through the network will look as below:
{"iv": "2SH5S8J75afKxr76osauow==", "ciphertext": "JFJvaixp9/8oiYaxrCS+yA6TkCKlX85g0qG0GlZa8eaQTuXf1Ot33yiIIr7Y+fsFTzL7kzOtFbaq1uO6QH54N9oyeWUi7rDelQi2HNZGYRJCqwtwAbFX4+D8IgBGqYkYGPKuiUZCLRvPArPmaMh8PpMrq4/nEOGf0ivyS9hKEVb9KSrm4+VedAfBMQfpxP3Z/cm/jpj2sKDb9rfcjWATEcQToQ/U4PP40mUGeDpKbmyTAxGLdGAp3jDcghkAM76nDAXmTpuP0PN7YpSp/3cRAiweXxuBszIdeLuoUBOa"}
The ciphertext encapsulates messages like the one shown above, plus the __sign__ key, which is used to verify the plaintext content and is stripped from the final message.
In case decryption or signature verification fails, the event gets dropped and does not arrive to the hooked functions.
Finally, if secret is set for a connector, it is impossible to accept non-encrypted, non-signed messages.
The CLI Tool
A CLI tool is part of the eventhive package to make it possible to test YAML configurations, without writing application code (and adding moving parts to the test).
The output of the tool is the last eventhive message that was received in JSON, or {"no":"output"} if no message is received.
It uses YAML configuration and also can template YAML files, using the similar named arguments provided through CLI, as shown below:
eventhive-cli --network my-hive --receiver worker --secret m1s3cr3t --config fastapi-template.yaml
fastapi-template.yaml:
connectors:
{network}:
pubsub_type: fastapi
input_channel: '{receiver}'
secret: '{secret}'
init:
host: 127.0.0.1
port: 8085
endpoint: /pubsub
CLI Usage
$ eventhive-cli -h
usage: eventhive-cli [-h] [--network NETWORK] [--receiver RECEIVER] [--event EVENT] [--json-data JSON_DATA] [--target-event TARGET_EVENT] [--json-fallback JSON_FALLBACK]
[--config CONFIG] [--timeout TIMEOUT] [--secret SECRET] [--debug] [--verbose]
The Swiss-Army knife for Eventhive
optional arguments:
-h, --help show this help message and exit
--network NETWORK The Eventhive Network of Events (<here>/*/*) (default: eventhive)
--receiver RECEIVER The Eventhive Channel of Events (*/<here>/*) (default: cli)
--event EVENT The Eventhive Event Name (*/*/<here>) (default: do)
--json-data JSON_DATA
If set - the JSON will be sent to "<network>/<receiver>/<event>" (default: False)
--target-event TARGET_EVENT
If set - the JSON defined in "--json-data" will be published on it instead of "<network>/<receiver>/<event>" (default: None)
--json-fallback JSON_FALLBACK
The JSON to print to STDOUT if no data is received in "<network>/<receiver>/<event>" (default: {"no":"output"})
--config CONFIG The Configuration file to be used by Eventhive (can include formatting) (default: .eventhive-config.yaml)
--timeout TIMEOUT Time to run before exiting and printing to STDOUT (default: 6)
--secret SECRET A secret string used for signing and encryption of messages (default: None)
--debug, -d When set - full DEBUG logs will be printed (default: 30)
--verbose, -v When set - INFO logs will be printed (default: None)
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file eventhive-0.5.0.tar.gz.
File metadata
- Download URL: eventhive-0.5.0.tar.gz
- Upload date:
- Size: 25.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a61bd0c3ee1658a4d17f3ee1c581989f882ef29d4002ae41b91b8fff1e6215b3
|
|
| MD5 |
db83d823844f1f035d8e754bf6a35881
|
|
| BLAKE2b-256 |
540eb50b70ea083d8a63e330eea7a07aeecd8286b6ab9ae364b49b1a167e5e51
|
File details
Details for the file eventhive-0.5.0-py3-none-any.whl.
File metadata
- Download URL: eventhive-0.5.0-py3-none-any.whl
- Upload date:
- Size: 27.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
face84070195ca600df1f82d0015cc66654f38175d14d015497952146a86f123
|
|
| MD5 |
92f720a38528cdf014a2d89405f643ec
|
|
| BLAKE2b-256 |
27dfcb6136ed188b43127c043b8c34822545f2b8f46359c93076d70d1b39a90c
|