Modular event-centric python library made for simplification typical stream applications development with python type system strong exploitation.
Project description
typed-blocks
Documentation: https://typed-blocks.readthedocs.io
Typed Blocks is a modular event-centric python library created to simplify development of typical stream applications. It hardly exploits standard Python type hints.
Distinctive features:
- Boilerplate-less: just ties together pre-defined computational blocks.
- Focuses on loose coupling and event-driven design.
- Encourages explicit separation of data and code. Static typing to the rescue!
- Minimalistic at it's core and easy-to-go.
- Modular and open for extension via self-defined connectors for different data sources.
Installation
In minimal installation typed-blocks requires python 3.7 or greater and has no dependencies, so you may just use:
$ pip install typed-blocks
For each data source or extended features you may need corresponding client library. More details in documentation.
Example
If it is hard to understand, what is going on in the following snippet of code, this article also may help.
TL;DR:
- we are defining
events
: minimally significant pieces of data - we are defining
source
of all events in our program - we define
processors
to handle them - we put all ingredients in the
App
. Type hints are important! It's actually definition of whichprocessor
should handleevent
and should it emit newevents
or not. - ???
- it works!
from dataclasses import dataclass
from blocks import App, source, processor
@dataclass
class E:
x: int
@dataclass
class E2:
y: int
@source
def generator() -> E:
return E(1)
@processor
def printer(e: E) -> E2:
print('1', e)
return E2(e.x)
@processor
def printer2(e: E2) -> None:
print('2', e)
blocks = (generator(), printer(), printer2())
App(blocks).run(once=True)
Project details
Release history Release notifications | RSS feed
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
File details
Details for the file typed-blocks-0.9.6.tar.gz
.
File metadata
- Download URL: typed-blocks-0.9.6.tar.gz
- Upload date:
- Size: 33.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a8002e087e44bd8dd75fa804524d21f31637c6f6039cff9ee986d6a3eb04629e |
|
MD5 | e28e99722dd6935fc36c16f27bbc430e |
|
BLAKE2b-256 | 0548fe21e88ed2f59a1dbc1fa893d9e24e09ad54e1864f92b03e0f2fa6db5b73 |
File details
Details for the file typed_blocks-0.9.6-py3-none-any.whl
.
File metadata
- Download URL: typed_blocks-0.9.6-py3-none-any.whl
- Upload date:
- Size: 42.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 79dc23109761c26041887584182bab0b44ff427344fa7e42cc119fe497373636 |
|
MD5 | 106f0fb7709cda39f498d4e7903e7d43 |
|
BLAKE2b-256 | 14a5049bfd1d2e572510387d0274b483a67349abdec68fa5e9d8db895c8629bb |