Now I have a package with a class that looks like this:
class Opc(object):
def __init__(self):
client = Client("server_url")
client.connect()
opc = Opc()
Now I want to use the opcua-asyncio library, so I need to use an async function to connect to the server, but I can't await it from init. How can I connect to the server, using the async connect function, after my package is imported?