Làm cách nào tôi có thể xác định một lớp với await
trong hàm tạo hoặc thân lớp?
Ví dụ những gì tôi muốn:
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'
hoặc ví dụ với thuộc tính class 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)
Giải pháp của tôi (Nhưng tôi muốn xem một cách thanh lịch hơn)
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__
, mặc dù nó có thể không được thanh lịch