Posts by Obb • 11 points
1 post
-
-1
votes1
answer104
viewsQ: How to create automatic messages by Discord bot with constant updates? (python api)
import discord import TOKEN_value import memes client = discord.Client() TOKEN = TOKEN_value.token() memes_ON = False @client.event async def on_ready(): print('BOT HAS BEEN CONNECTED.')…