Write classes with async def __ainit__
Project description
async-class
Adding abillity to write classes with awaitable initialization function.
Example
import asyncio
from async_class import AsyncClass
class MyAsyncClass(AsyncClass):
async def __ainit__(self):
future = self.create_future()
self.loop.call_soon(future.set_result)
await future
async def main():
instance = await MyAsyncClass()
print(instance)
asyncio.run(main())
Documentation
Module provides metaclasses and some usefule abstractions for writing async code.
TaskStore
TBD
AsyncClass
Base class with task store instance and helpers for simple task management.
AsyncClassBase
Is a base wrapper with metaclass has no additional methods and properties like
self.loop
and TaskStore
related helpers (self.create_task
, self.create_future
).
import asyncio
from async_class import AsyncClassBase
class MyAsyncClass(AsyncClassBase):
async def __ainit__(self):
loop = asyncio.get_event_loop()
future = loop.create_future()
loop.call_soon(future.set_result)
await future
async def main():
instance = await MyAsyncClass()
print(instance)
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
async-class-0.0.2.tar.gz
(3.1 kB
view details)
File details
Details for the file async-class-0.0.2.tar.gz
.
File metadata
- Download URL: async-class-0.0.2.tar.gz
- Upload date:
- Size: 3.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.7.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | aef85fb3f9f2edff00a590c3b359cec179aba507ce621bce345abcdb5e52c1b8 |
|
MD5 | fc6df6084af516834ba7fa8f47c30065 |
|
BLAKE2b-256 | e37a3189f1a9ad0e0b459288991ef64befc2943218d6f336ba45bb97413c0c15 |