index — Deutsche-Haus-Bot @ b031f196c5d6b9732fa47db063fcdd7638485f01

Discord bot to dynamically create voice chats for clubs that boosters can create

test.py (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
import db
import asyncio

async def main():
    my_db = db.Database("1170646611236487208.db")
    await my_db.create_tables()
    await my_db.list_tables()
    print(await my_db.select_clubs())
    await my_db.check_if_club_creatable("asdsad", 621759962280099840)

asyncio.run(main())