Can you guys review my discord bot code?
# While True to listen to incoming events
while True:
events = receive_data(ws)
print(events)
if events["t"] == "READY":
print("Bot has started.....")
elif events["t"] == "MESSAGE_CREATE":
message_obj = events
if message_obj["d"]["author"]["id"] != BOT_ID:
if message_obj["d"]["content"] == ">ping":
requests.post(url=f"{API_BASE_URL}/channels/{message_obj["d"]["channel_id"]}/messages",
json={"content": "pong!"}, headers=header)
if message_obj["d"]["content"] == ">create_channel":
channel = {"name": "Channel Test"}
requests.post(url=f"{API_BASE_URL}/guilds/{GUILD_ID}/channels", headers=header, json=channel)
print("CHANNEL CREATED")