vo0ov / PYPI-PyroArgs

Библиотека PyroArgs доступна на PyPi.
MIT License
2 stars 0 forks source link

PyPI - Downloads PyPI - License

PyroArgs на PyPi

PyroArgs — это библиотека для удобной обработки аргументов команд в Pyrogram. Она позволяет легко создавать команды с аргументами, обрабатывать ошибки и расширять функциональность с помощью системы событий.

Особенности

Установка

pip install PyroArgs

Использование

Импорт необходимых модулей

from pyrogram import Client
from PyroArgs import PyroArgs, types, errors

Инициализация клиента и PyroArgs

# Инициализируйте клиент Pyrogram с вашими учетными данными
bot = Client("my_bot", api_id=..., api_hash="...")  # Замените '...' на ваши api_id и api_hash

# Создайте экземпляр PyroArgs с префиксами для команд
pyro_args = PyroArgs(bot, prefixes=["/"])

Создание команды

@pyro_args.command()
async def greet(message: types.Message, name: str):
    await message.reply(f"Привет, {name}!")

Обработка ошибок аргументов

@pyro_args.events.on_arguments_error
async def handle_arguments_error(message: types.Message, error: errors.ArgumentsError):
    await message.reply(f"Ошибка аргументов: {error}")

Обработка ошибок команд

@pyro_args.events.on_command_error
async def handle_command_error(message: types.Message, error: errors.CommandError):
    await message.reply(f"Ошибка в команде: {error}")

Запуск бота

if __name__ == "__main__":
    bot.run()

Полный код из примера выше:

from pyrogram import Client
from PyroArgs import PyroArgs, types, errors

# Заполните ваши api_id и api_hash
bot = Client("my_bot", api_id=..., api_hash="...")  # Замените '...' на ваши api_id и api_hash

# Создание экземпляра PyroArgs с префиксом команд
pyro_args = PyroArgs(bot, prefixes=["/"])

# Создание команды
@pyro_args.command()
async def greet(message: types.Message, name: str):
    await message.reply(f"Привет, {name}!")

# Обработка ошибок аргументов
@pyro_args.events.on_arguments_error
async def handle_arguments_error(message: types.Message, error: errors.ArgumentsError):
    await message.reply(f"Ошибка аргументов: {error}")

# Обработка ошибок команд
@pyro_args.events.on_command_error
async def handle_command_error(message: types.Message, error: errors.CommandError):
    await message.reply(f"Ошибка в команде: {error}")

# Запуск бота
if __name__ == "__main__":
    bot.run()

Примеры

В папке examples/ представлены различные примеры использования библиотеки PyroArgs:

Вклад в проект

Если вы хотите внести свой вклад в развитие PyroArgs:

Лицензия

Этот проект распространяется под лицензией MIT. Подробности см. в файле LICENSE или ниже:

MIT License
Copyright (c) 2024, vo0ov

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.