Python data flows library to build structured applications
Project description
aioflows
This project aims to implement a helper library for building asynchronous applications in Python, based on the concept of structured data flows and actors. The current stage is pure proof-of-concept and basis for discussion with colleagues and community. It is not intended to be used in any production or even pet projects.
Minimal working example
import asyncio
from aioflows.simple import Printer, Ticker
async def start():
await (Ticker() >> Printer()).start()
asyncio.run(start())
Udp echo example
import asyncio
from aioflows.network import Udp
from aioflows.simple import Printer, Tee
async def start():
udp = Udp(local_addr=('127.0.0.1', 5353), reuse_port=True)
await (udp >> Tee(Printer()) >> udp).start()
asyncio.run(start())
You can test it with socat:
socat - UDP:localhost:5353
Other examples
More examples can be found in src/examples.
Installation
- local
pip install .
- editable
pip install -e .
- development
pip install -e .[dev]
- examples dependencies
pip install -e .[examples]
- all together
pip install -e .[dev,examples]
- from github
pip install git+https://github.com/apatrushev/aioflows.git
Usual development steps
Run checks and tests:
inv isort flake test
Run examples (all ERRORCODE's should be 0/OK or timeout at the moment):
inv examples | grep ERRORCODE
Similar projects
I found existing solutions that are almost equal to this concept:
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
aioflows-0.1.0-py3-none-any.whl
(13.9 kB
view hashes)