import discord from discord.ext import tasks client = discord.Client() # Repeant n seconds @tasks.loop(seconds = n) async def looping_function(): pass looping_function.start() client.run()