https://github.com/lurst/simple_eventconsumer
:robot: A simple eventconsumer to play with
https://github.com/lurst/simple_eventconsumer
asyncio docker docker-compose event-sourcing events eventstore handlers
Last synced: 9 months ago
JSON representation
:robot: A simple eventconsumer to play with
- Host: GitHub
- URL: https://github.com/lurst/simple_eventconsumer
- Owner: LuRsT
- Created: 2018-02-13T07:30:37.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2022-10-07T12:02:26.000Z (over 3 years ago)
- Last Synced: 2025-02-10T10:52:36.050Z (11 months ago)
- Topics: asyncio, docker, docker-compose, event-sourcing, events, eventstore, handlers
- Language: Python
- Homepage:
- Size: 18.6 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple Eventconsumer
This is the simplest python event consumer using eventstore I could think of.
## Requirements:
- docker-compose (and docker of course)
## How to Run?
- In a terminal run `docker-compose up`
- Once it's running, in another terminal, run:
```sh
python send_test_event.py "Gil"
```
You should see in the docker-compose logs the following:
```
eventconsumer_1 | WARNING:root:Hi Gil
```