import asyncio import firebase_manager def ban_user(user_id: str): try: firebase_manager.auth.update_user(user_id, disabled=False) print("Banned : " + user_id) except Exception as e: print("Error banning user " + user_id, "|", str(e), type(e).__name__) async def one() -> int: return 1 async def two() -> int: await asyncio.sleep(2) return 2 async def three() -> int: await asyncio.sleep(3) return 3 coroutines = [ one(), two(), three() ] async def main() -> None: results = await asyncio.gather(*coroutines) #for result in results: # print(result) print(f"0: {results[0]}") print(f"1: {results[1]}") print(f"2: {results[2]}") if __name__ == '__main__': #ban_user("MpkbDMOO8PQddQgB5VgBQdTMWF53") #file_manager.log_action("gqZN3eCHF3V2er3Py3rlgk8u2t83", "test", "DeleteServer") #firebase_manager.set_servers_not_running() asyncio.run(main())