Update main.py

This commit is contained in:
Mike2.0
2023-11-10 19:28:16 +00:00
parent cd45d9c0c2
commit e2a2ba90fa

16
main.py
View File

@@ -107,25 +107,17 @@ async def delete(ctx, attr: str, user: discord.Option(choices=[os.environ['N1'],
@bot.event @bot.event
# async def jueves():
# fecha = datetime.strftime(fecha, '%A %H:%M:%S')
# await send_log(f"{fecha}")
async def mensaje_jueves(): async def mensaje_jueves():
channel = client.get_channel(1051497546708697120) channel = bot.get_channel(1051497546708697120)
await channel.send("prueba") await channel.send("prueba")
async def mensaje_jueves():
async def cronómetro():
while True: while True:
current_date = datetime.datetime.now() current_date = datetime.datetime.now()
if current_date.weekday() == 4: if current_date.weekday() == 4:
if current_date.hour == 20 and current_date.minute == 26: if current_date.hour == 20 and current_date.minute == 29:
await mensaje_jueves() await mensaje_jueves()
await asyncio.sleep(20) await asyncio.sleep(10)