Files
python-client-sdk/examples/basic.py
T
2021-10-21 06:53:23 +01:00

17 lines
399 B
Python
Executable File

import asyncio
import aiohttp
import revolt
class Client(revolt.Client):
async def on_message(self, message: revolt.Message):
if message.content == "hello":
await message.channel.send("hi how are you")
async def main():
async with aiohttp.ClientSession() as session:
client = Client(session, "BOT TOKEN HERE")
await client.start()
asyncio.run(main())