No project description provided
Project description
AsyncGraphs
AsyncGraphs is a tiny ETL framework that leverages asyncio to make the execution concurrent whilst blocked on I/O.
Source: https://github.com/SamVermeulen42/asyncgraphs
Documentation: https://samvermeulen42.github.io/asyncgraphs/
Features
- Typed
- Simple concurrency based on asyncio
- Easy construction of ETL graphs
Installation
pip install asyncgraphs
Example
The following example prints random Pokémon and the games they appear in.
It does this every 10 seconds and uses PokéApi.
import aiohttp
from asyncgraphs import Graph, run
import asyncio
from functools import partial
from random import randint
from typing import Dict, Any
async def random_pokemon_id():
while True:
yield randint(1, 151)
await asyncio.sleep(10)
async def get_pokemon_info(session: aiohttp.ClientSession, pokemon_id: int) -> Dict[str, Any]:
pokemon_url = f"https://pokeapi.co/api/v2/pokemon/{pokemon_id}"
async with session.get(pokemon_url) as response:
yield await response.json()
def format_pokemon(pokemon_info: Dict[str, Any]) -> str:
name = pokemon_info["name"]
versions = (game['version']['name'] for game in pokemon_info['game_indices'])
return f"{name}: {', '.join(versions)}"
async def main():
async with aiohttp.ClientSession() as session:
g = Graph()
g | random_pokemon_id() | partial(get_pokemon_info, session) | format_pokemon | print
await run(g)
asyncio.run(main())
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
asyncgraphs-0.0.4.tar.gz
(8.4 kB
view details)
Built Distribution
File details
Details for the file asyncgraphs-0.0.4.tar.gz
.
File metadata
- Download URL: asyncgraphs-0.0.4.tar.gz
- Upload date:
- Size: 8.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ee9053359502f1d0e74bfaaa7129207a41e35d3043c0907aaec09d668b4f6f5b |
|
MD5 | ed533dc18540d69691f1357ca9109c2a |
|
BLAKE2b-256 | 4fcf2072189831715c692ccfcf4c71e70bd8ba5996809c21db7720283549dc0e |
File details
Details for the file asyncgraphs-0.0.4-py3-none-any.whl
.
File metadata
- Download URL: asyncgraphs-0.0.4-py3-none-any.whl
- Upload date:
- Size: 5.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e0186585fd916a55eb06974b90973e2f5abfd0386a3361052b10c9014c71cdde |
|
MD5 | c66103ea6d820983b46a87ee63ab8640 |
|
BLAKE2b-256 | c778646bbd7bc46014b7a382da572dcc2a0b74f3f717fa8f66b798284a16543d |