No project description provided
Project description
Eyegway
Intro
Eyegway is a python package for data routing through Redis / Dragonfly / KeyDB. It is designed to be a simple and easy to use package for sending any data from a generic source to a generic destination by exploting HUBs(and)SPOKES paradigm. The user can send data to a generic
HUB, which has a data queue and a data history, and the data can be pulled from anywhere else.
The library needs a running instance of Redis / Dragonfly / KeyDB to work.
Installation
pip install -e .
Basic Usage
Create a Hub
In order to use the machinery, you need to create a Hub with a unique name which is used to identify the hub across the network:
import eyegway.hubs.asyn as eha
hub = eha.AsyncMessageHub.create(name='my_hub')
This method will create a new hub with the given name using default settings retrieved from environment variables.
How to override default settings?
Programmatically Override Settings
If you want to override the default settings, you can pass a configuration dictionary to the create method:
import eyegway.hubs as eh
config = eh.HubsConfig(max_buffer_size=1000)
hub = ehs.MessageHub.create(hub_name, config=config)
Override Environment Variables
Set the following environment variables before launching the application:
eyegway_hubs_redis_host="localhost"
eyegway_hubs_redis_port=6379
eyegway_hubs_max_buffer_size=10
eyegway_hubs_max_history_size=10
Send and Receive Data from/to the Hub
Then you can send data to the hub:
await hub.push({'counter':0})
From another process/node, you can pull the data from the hub:
import eyegway.hubs.asyn as eha
hub = eha.AsyncMessageHub.create(name='my_hub')
data = await hub.pop()
print(data)
The pop method will remove the data from the hub's queue. If you want to read the data without removing it, you can use the last method:
data = await hub.last(offset=0)
print(data)
Examples
You can find more examples (both for Async and Sync version of the hubs) in Hubs Examples
CLI Usage
Eyegway comes with a CLI tool to interact with the hubs. You can use the eyegway command to interact with the hubs.
eyegway hubs
For example:
eyegway hubs search # List all the hubs
eyegway hubs info -n $HUB_NAME # Get information about the hub
eyegway hubs last -n $HUB_NAME # Print the last data in the hub in a fancy way
eyegway hubs stream-demo -n $HUB_NAME # Stream demo data to the hub
API Rest Server
Eyegway comes with a REST API server to interact with the hubs. You can use the eyegway command to start the server.
eyegway hubs rest-serve
Then go to http://localhost:55221/docs to see the API documentation (where 55221is the default Eyegwat port, you can change it using the --port option).
WebUI
If the REST API server is running, you can run the battery-included WebUI to interact with the hubs. The webui is a Svelte package available in the relative websubfolder, see: Eyegway Svelte for more details.
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 eyecan_eyegway-0.6.1.tar.gz.
File metadata
- Download URL: eyecan_eyegway-0.6.1.tar.gz
- Upload date:
- Size: 21.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cbd7f83b540d7fdaa1882adc46c37d130a384eb1dfb52860c6a8f21ef0f37ed0
|
|
| MD5 |
d91143d46d70d210af33acb960daf396
|
|
| BLAKE2b-256 |
dae9ec8d8ff6cac40585a3f989827a8315becfed90f33b77b94b848733978dc1
|
File details
Details for the file eyecan_eyegway-0.6.1-py3-none-any.whl.
File metadata
- Download URL: eyecan_eyegway-0.6.1-py3-none-any.whl
- Upload date:
- Size: 30.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7f766e8500a2208ecd91d2981cb5e86d102574a81db171defd815c4f2903e5a0
|
|
| MD5 |
2b171cf166049b3d1875d0ec52e9135a
|
|
| BLAKE2b-256 |
36d9369deffde174fb36324569948e69c12817dfeee718b508c17b55995b39ef
|