Jak mogę zdefiniować klasę await
w konstruktorze lub treści klasy?
Na przykład to, czego chcę:
import asyncio
# some code
class Foo(object):
async def __init__(self, settings):
self.settings = settings
self.pool = await create_pool(dsn)
foo = Foo(settings)
# it raises:
# TypeError: __init__() should return None, not 'coroutine'
lub przykład z atrybutem body body:
class Foo(object):
self.pool = await create_pool(dsn) # Sure it raises syntax Error
def __init__(self, settings):
self.settings = settings
foo = Foo(settings)
Moje rozwiązanie (ale chciałbym zobaczyć bardziej elegancki sposób)
class Foo(object):
def __init__(self, settings):
self.settings = settings
async def init(self):
self.pool = await create_pool(dsn)
foo = Foo(settings)
await foo.init()
__new__
, chociaż może nie być eleganckie