CoolFace
Apppublic

malepati/custom_template_working

sourceHugging Faceupdated 8mo agoView on Hugging Face
0likes
test_db.py13 linesDownload Raw Back to fastapi
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