import discord import asyncio # import settingsDB import logger # import module_one import module_two import module_three import module_four [...] client = discord.Client() botToken = settingsDB.getBotSetting("DiscordToken") # on_ready event stuff @client.event async def on_ready(): # stuff # [...] # on_message event stuff @client.event async def on_message(message): # stuff # [...] # Tasks functions async def taskOne(): while True: cycle = settingsDB.getBotSetting("taskOne_Cycle") # calling for stuff in module_one.py # stuff # [...] await asyncio.sleep(int(cycle)) async def taskTwo(): while True: cycle = settingsDB.getBotSetting("taskTwo_Cycle") # calling for stuff in module_two.py # stuff # [...] await asyncio.sleep(int(cycle)) async def taskThree(): while True: cycle = settingsDB.getBotSetting("taskThree_Cycle") # calling for stuff in module_three.py # stuff # [...] await asyncio.sleep(int(cycle)) async def taskFour(): while True: cycle = settingsDB.getBotSetting("taskFour_Cycle") # calling for stuff in module_four.py # stuff # [...] await asyncio.sleep(int(cycle)) client.run(botToken)
settingsDB refers to settingsDB.py where all the function querying my DB are stored and can change depending on user inputs updated via another source not related with Discord bot (via website PHP).
logger refers to logger.py where i'm wrting into a txt file stuff that i want as logs.
Under on_ready event i wrote:
@client.event async def on_ready(): print('Logged in as {0.user}'.format(client)) loop = asyncio.get_event_loop() try: asyncio.ensure_future(taskOne()) asyncio.ensure_future(taskTwo()) asyncio.ensure_future(taskThree()) asyncio.ensure_future(taskFour()) except BaseException as err: logger.logger('Unexpected error > "' + str(err) + '" / "' + str(type(err)) + '"') raise