2021-10-17 02:47:07 +01:00
2021-10-17 02:47:07 +01:00
2021-10-17 02:47:07 +01:00
2021-10-17 02:47:07 +01:00
2021-10-17 02:47:07 +01:00
2021-10-17 02:47:07 +01:00
2021-10-17 02:47:07 +01:00
2021-10-17 02:47:07 +01:00
2021-10-17 02:47:07 +01:00
2021-10-17 02:47:07 +01:00
2021-10-17 02:47:07 +01:00
2021-10-17 02:47:07 +01:00

Revolt.py

An async library to interact with the https://revolt.chat api.

This library will be focused on making bots and i will not implement anything only for user accounts.

Support server: https://app.revolt.chat/invite/FDXER6hr

Documentation is here

Example

More examples in the examples folder

import revolt
import asyncio
import aiohttp

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())
S
Latest
2024-02-20 12:15:01 -05:00
Languages
Python 99.9%
Just 0.1%