A package for applying real-time transformations on streaming data.
Project description
A simple package for applying transformations to streaming data.
Stream Conversion
This package can handle stream functions and stream generators.
Here's an example with functions:
from random import randint
from stream_converter.converter import convert_function_stream
def get_random_number() -> int:
return randint(0, 100)
converted_stream = convert_function_stream(
stream_function=get_random_number,
conversion_function=lambda byte: str(byte),
)
for converted_chunk in converted_stream:
print(converted_chunk)
And here's an example with generators:
from random import randint
from typing import Generator
from stream_converter.converter import convert_generator_stream
def get_random_number_generator() -> Generator[int, None, None]:
while True:
yield randint(0, 100)
converted_stream = convert_generator_stream(
stream_generator=get_random_number_generator(),
conversion_function=lambda int: "odd" if int % 2 else "even"
)
for converted_chunk in converted_stream:
print(converted_chunk)
Built-In Stream Support
Microphone via PyAudio
from stream_converter.converter import convert_generator_stream, convert_function_stream
from stream_converter.microphone_stream import get_microphone_stream_generator, MicrophoneStream
# generator
converted_stream = convert_generator_stream(
stream_generator=get_microphone_stream_generator(),
conversion_function=lambda byte: str(byte),
)
for converted_chunk in converted_stream:
print(converted_chunk)
# function
with MicrophoneStream() as microphone_stream:
converted_stream = convert_function_stream(
stream_function=microphone_stream.read,
conversion_function=lambda byte: str(byte),
)
for converted_chunk in converted_stream:
print(converted_chunk)
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
stream_converter-1.0.0.tar.gz
(2.1 kB
view hashes)
Built Distribution
Close
Hashes for stream_converter-1.0.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 403687a3be55b608847fb530e8e48efaf2ec514f6de7a4674ba52d649fcf03b7 |
|
MD5 | abc03a4c84fe7918b6c440ef2633b6a8 |
|
BLAKE2b-256 | 7e261e2d51a6fa9e17102c33c6334dbba400f6e478efe20283ec27e01ad3f6fc |