Files
python-client-sdk/examples/basic.py
T
2021-09-02 15:16:25 -04:00

19 lines
401 B
Python

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())