await
Yapıcı veya sınıf gövdesinde bir sınıfı nasıl tanımlayabilirim ?
Örneğin istediğim şey:
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'
veya sınıf gövdesi niteliğine sahip örnek:
class Foo(object):
self.pool = await create_pool(dsn) # Sure it raises syntax Error
def __init__(self, settings):
self.settings = settings
foo = Foo(settings)
Çözümüm (Ama daha zarif bir yol görmek isterim)
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__
Zarif olmasa da biraz şansınız olabilir