subinterpreters for asyncio.
Project description
async-interpreters
subinterpreters for asyncio
Usage
from async_interpreters import WorkersPool
workers = WorkersPool(max_size=10, timeout=5)
def calc_sum(a, b):
sum = a
for i in range(b):
sum += i
return sum
async def usage():
await workers.run_sync(calc_sum, 10, 100_000_000)
async def benchmark():
t = time.perf_counter()
await asyncio.gather(*(usage() for _ in range(10)))
print(time.perf_counter() - t)
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
File details
Details for the file async_interpreters-0.1.3-py3-none-any.whl
.
File metadata
- Download URL: async_interpreters-0.1.3-py3-none-any.whl
- Upload date:
- Size: 5.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5093724fb393dc26bac59989992256d25c509b1ac52d96163f0d4cbdb429aa61 |
|
MD5 | cb2edb467c7b3e416999e0c95a81350a |
|
BLAKE2b-256 | b2f3b0b83d93b051bfe72b1b78b4ec0009c1befa8330778e22693adf89046cb4 |