import asyncio from aiomql import Account async def manage_account(): async with Account() as account: print("Account successfully connected!") print(account.dict) asyncio.run(manage_account())