Python wrapper for https://api.avanpost20.ru
Find a file
2024-11-06 20:14:39 +00:00
.github first commit 2024-11-05 14:57:38 +00:00
docs first commit 2024-11-05 14:57:38 +00:00
examples first commit 2024-11-05 14:57:38 +00:00
next comment corrected 2024-11-06 20:14:39 +00:00
typings first commit 2024-11-05 14:57:38 +00:00
.gitignore first commit 2024-11-05 14:57:38 +00:00
.readthedocs.yml first commit 2024-11-05 14:57:38 +00:00
Justfile first commit 2024-11-05 14:57:38 +00:00
LICENSE first commit 2024-11-05 14:57:38 +00:00
pyproject.toml first commit 2024-11-05 14:57:38 +00:00
README.md first commit 2024-11-05 14:57:38 +00:00

next.py

An async library to interact with the https://next.avanpost20.ru API.

You can join the support server here and find the library's documentation here.

Installing

You can use pip to install next.py. It differs slightly depending on what OS/Distro you use.

On Windows

py -m pip install -U next-api-py # -U to update

On macOS and Linux

python3 -m pip install -U next-api-py

Example

More examples can be found in the examples folder.

import next
import asyncio

class Client(next.Client):
    async def on_message(self, message: next.Message):
        if message.content == "hello":
            await message.channel.send("hi how are you")

async def main():
    async with next.utils.client_session() as session:
        client = Client(session, "BOT TOKEN HERE")
        await client.start()

asyncio.run(main())