27 lines
541 B
Python
Executable File
27 lines
541 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
# deadsimple discord bot
|
|
|
|
import discord
|
|
import asyncio
|
|
|
|
client = discord.Client()
|
|
|
|
async def task():
|
|
await client.wait_until_ready()
|
|
|
|
while not client.is_closed:
|
|
server = client.get_channel('channel id')
|
|
await client.send_message(server, 'message')
|
|
await asyncio.sleep(60) # time to sleep
|
|
|
|
@client.event
|
|
async def on_ready():
|
|
print('Logged in as')
|
|
print(client.user.name)
|
|
print(client.user.id)
|
|
print('------')
|
|
|
|
client.loop.create_task(task())
|
|
client.run('username', 'password')
|