asyncio-red
Project description
asyncio-RED (Redis Event Driven)
Powers your microservices with event driven approach using redis as a backend.
Support both publishing and subscribing using lists, channels and streams.
pydantic
is being used for events validation.
s3
can be used for sharing event schemas between services.
Installation
pip install asyncio-red
Simple producer
from redis.asyncio import Redis
from asyncio_red import RED, Via, BaseEvent
from pydantic import Field
class EventV1List(BaseEvent):
key: str = Field(..., title='Key description')
class EventV1Channel(BaseEvent):
key: str = Field(..., title='Key description')
class EventV1Stream(BaseEvent):
key: str = Field(..., title='Key description')
redis_client = Redis()
red = RED(app_name=str('service_1'), redis_client=redis_client)
red.add_out(
event=EventV1List,
via=Via.LIST,
target_name='events_list'
)
red.add_out(
event=EventV1Channel,
via=Via.CHANNELS,
target_name='events_channel'
)
red.add_out(
event=EventV1Stream,
via=Via.STREAMS,
target_name='events_stream'
)
async def your_awesome_function():
# dispatch events
await EventV1List(key='value').dispatch() # this one will be put to a list
await EventV1Channel(key='value').dispatch() # this one will be pushed to a channel
await EventV1Stream(key='value').dispatch() # this one will be pushed to a stream
Simple consumer
from redis.asyncio import Redis
from asyncio_red import RED, Via, BaseEvent
from pydantic import Field
class EventV1List(BaseEvent):
key: str = Field(..., title='Key description')
class EventV1Channel(BaseEvent):
key: str = Field(..., title='Key description')
class EventV1Stream(BaseEvent):
key: str = Field(..., title='Key description')
redis_client = Redis()
red = RED(app_name=str('service_2'), redis_client=redis_client)
async def event_handler(event):
print(event)
red.add_in(
event=EventV1List,
via=Via.LIST,
handlers=(event_handler, ),
list_name="events_list",
)
red.add_in(
event=EventV1Channel,
via=Via.CHANNELS,
handlers=(event_handler, ),
error_handler=event_handler,
channel_name="events_channel"
)
red.add_in(
event=EventV1Stream,
via=Via.STREAMS,
handlers=(event_handler, event_handler),
stream_name="events_stream",
group_name="events_group",
consumer_name="consumer_name"
)
await red.run()
Shared events registry
There is a possibility to keep event schemas registry on the S3 and share the schema across different services. You'll need an AWS account and keys with access to S3.
- Go to app root dir and initialize asyncio-red:
asyncio_red init --app-name=<app name> --s3-bucket=<bucket name>
This will create an initial structure.
Define your events at red/registry/<app name>.py
:
from pydantic import Field
from asyncio_red.events import BaseEvent
class EventV1List(BaseEvent):
key: str = Field(..., title='Key description')
class EventV1Channel(BaseEvent):
key: str = Field(..., title='Key description')
class EventV1Stream(BaseEvent):
key: str = Field(..., title='Key description')
- push application events schemas to a registry:
asyncio-red push
- on a different service you can pull shared schemas - do the same steps, e.g. init structure and run
asyncio-red pull
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
asyncio_red-0.3.6.tar.gz
(13.2 kB
view details)
Built Distribution
File details
Details for the file asyncio_red-0.3.6.tar.gz
.
File metadata
- Download URL: asyncio_red-0.3.6.tar.gz
- Upload date:
- Size: 13.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.11.1 Darwin/22.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 35d3bbd807f902f41c812d858fe3b8596adae25f3b8a8df14ae8b46429e2e795 |
|
MD5 | 07ae3a5c064e2beb4695d1c12f755296 |
|
BLAKE2b-256 | 0835c4bb107ca610a51919c34f82ffc69d02553463572078133acb2ef45d4983 |
File details
Details for the file asyncio_red-0.3.6-py3-none-any.whl
.
File metadata
- Download URL: asyncio_red-0.3.6-py3-none-any.whl
- Upload date:
- Size: 17.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.11.1 Darwin/22.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9556c990901b05f4d2e16b58983becd71d3d39aa2d047647ceeea1188efbc01d |
|
MD5 | 3904a9a321d6a7affbcac607495f0ff9 |
|
BLAKE2b-256 | caf95b4774c93ee8ccb07eb0aee773cb59be6689cf61efe7280de2ffd39645a5 |