Async functions to compare with anyio and asyncio, and toolkit to read excel with async/await.
Project description
asynctor
Some async functions that using anyio, and toolkit for excel read.
Installation
$ pip install asynctor
---> 100%
Successfully installed asynctor
with extras:
pip install "asynctor[xlsx,redis,fastapi]"
Or by pdm:
pdm add "asynctor[redis]"
Usage
- Async function that compare asyncio but use anyio:
bulk_gather/gather/run
>>> import asynctor
>>> async def foo():
... return 1
...
>>> await asynctor.bulk_gather([foo(), foo()], limit=200)
(1, 1)
>>> await asynctor.gather(foo(), foo())
(1, 1)
>>> asynctor.run(gather(foo(), foo()))
(1, 1)
- timeit
>>> import time
>>> import anyio
>>> from asynctor import timeit
>>> @timeit
... async def sleep_test():
... await anyio.sleep(3)
...
>>> await sleep()
sleep_test Cost: 3.0 seconds
>>> @timeit
... def sleep_test2():
... time.sleep(3.1)
...
>>> sleep_test2()
sleep_test2 Cost: 3.1 seconds
- AioRedis
pip install "asynctor[redis]"
from asynctor.contrib.fastapi import AioRedisDep, register_aioredis
from fastapi import FastAPI
app = FastAPI()
register_aioredis(app)
@app.get('/')
async def root(redis: AioRedisDep) -> list[str]:
return await redis.keys()
@app.get('/redis')
async def get_value_from_redis_by_key(redis: AioRedisDep, key: str) -> str:
value = await redis.get(key)
if not value:
return ''
return value.decode()
- AsyncTestClient pip install "asynctor[fastapi]"
import pytest
from asynctor import AsyncTestClient, AsyncClientGenerator
from httpx import AsyncClient
from main import app
@pytest.fixture(scope='session')
async def client() -> AsyncClientGenerator:
async with AsyncTestClient(app) as c:
yield c
@pytest.fixture(scope="session")
def anyio_backend():
return "asyncio"
@pytest.mark.anyio
async def test_api(client: AsyncClient):
response = await client.get("/")
assert response.status_code == 200
- Read Excel File
pandas/openpyxl is required, can be installed with xlsx extra:
pip install "asynctor[xlsx]"
>>> from asynctor.xlsx import load_xlsx
>>> await load_xlsx('tests/demo.xlsx')
[{'Column1': 'row1-\\t%c', 'Column2\nMultiLines': 0, 'Column 3': 1, 4: ''}, {'Column1': 'r2c1\n00', 'Column2\nMultiLines': 'r2 c2', 'Column 3': 2, 4: ''}]
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
asynctor-0.10.0.tar.gz
(37.2 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
asynctor-0.10.0-py3-none-any.whl
(21.3 kB
view details)
File details
Details for the file asynctor-0.10.0.tar.gz.
File metadata
- Download URL: asynctor-0.10.0.tar.gz
- Upload date:
- Size: 37.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
42f10397401efc3ff9d47b4c276a304fee8fe00d0daef9466d98ec0103d1052d
|
|
| MD5 |
0dc86a39d28cf65b5754ab913cbad954
|
|
| BLAKE2b-256 |
b00251d910dfbbae5fa555c273853cb19aafe99165ccb48ebfaebb518029f1dd
|
File details
Details for the file asynctor-0.10.0-py3-none-any.whl.
File metadata
- Download URL: asynctor-0.10.0-py3-none-any.whl
- Upload date:
- Size: 21.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a7a6cc866d68850c486f27750b1cc24180af5046836d878efc698fab874975f0
|
|
| MD5 |
135fcb312652905b304477f80a1a926e
|
|
| BLAKE2b-256 |
b2b821aee795c15c6a280445bf62874e5277bc4c6a2583f30de3f9ffe68df422
|