malepati/custom_template_working
0
1import asyncio2import aiosqlite3 4async def main():5 try:6 async with aiosqlite.connect("test.db") as db:7 print("Connected async")8 except Exception as e:9 print(f"Error: {e}")10 11if __name__ == "__main__":12 asyncio.run(main())13 