ndugram /
fastvk
Async VK bot framework with FastAPI-style decorators and aiogram-style FSM
73/100 healthLoading repository data…
Damego / repository
Python async api wrapper for anilibria.tv
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
О библиотеке
anilibria.py - это RESTful и Websocket обёртка для API anilibria.tv.
Вы можете ей пользоваться для получение уведомлений о выходе новой серии, получение информации о тайтлах и других вещей.
Установка
pip install --upgrade anilibria.py
С использование poetry:
poetry add anilibria.py
Использование методов клиента
В библиотеке реализована поддержка RESTful API.
Список всех возможных методов вы можете увидеть здесь <https://anilibriapy.readthedocs.io/ru/latest/client.html>__
.. code-block:: python
import asyncio
from anilibria import AniLibriaClient
async def main(): # Создание клиента client = AniLibriaClient(proxy="http://0.0.0.0:80") # proxy - необязательный аргумент
# Получение тайтла по его коду
title = await client.get_title(code="kimetsu-no-yaiba-yuukaku-hen")
# Вывод описание тайтла
print(title.description) # Все атрибуты вы можете найти в документации моделей
asyncio.run(main())
Использование Websocket
АПИ Анилибрии имеет вебсокет, к которому можно подключиться.
.. code-block:: python
from anilibria import AniLibriaClient, Connect
client = AniLibriaClient()
@client.on(Connect) # Или client.listen(name="on_connect") async def connected(event: Connect): print("Подключено к АПИ")
client.start()
Все модели события вы можете найти здесь <https://anilibriapy.readthedocs.io/ru/latest/events.html>_
Использование с другими библиотеками ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Вы также можете использовать эту библиотеку вместе с:
discord.py и его форкахaiogramи с другими.
Примеры использования представлены здесь <https://github.com/Damego/anilibria.py/tree/main/examples>__
Документация
^^^^^^^^^^^^
Официальная документация API <https://github.com/anilibria/docs/blob/master/api_v3.md>__
Документация библиотеки <https://anilibriapy.readthedocs.io/ru/latest/>__
Selected from shared topics, language and repository description—not editorial ratings.
ndugram /
Async VK bot framework with FastAPI-style decorators and aiogram-style FSM
73/100 healthmccalpink /
Async Python framework for Max Bot API (мессенджер Max от VK). Inspired by aiogram. Typed, extensible, production-ready.
60/100 healthakiamuradev /
AI-assisted multi-platform tutor bot for Telegram and VK Mini App: async Python backend, aiohttp API, PostgreSQL, task-based RAG, user memory, React/Vite frontend and Docker.
Domiff /
Async Telegram bot for real-time weather forecasts. Built with aiogram 3, aiohttp, and OpenWeatherMap API.
53/100 health