معرفی شرکت ها


botlogging-1.0.1


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

A logging package for Discord bots
ویژگی مقدار
سیستم عامل -
نام فایل botlogging-1.0.1
نام botlogging
نسخه کتابخانه 1.0.1
نگهدارنده []
ایمیل نگهدارنده []
نویسنده effprime
ایمیل نویسنده effprime@github.com
آدرس صفحه اصلی https://github.com/effprime/BotLogging
آدرس اینترنتی https://pypi.org/project/botlogging/
مجوز -
# BotLogging BotLogging is a logging package for Discord bots. It allows bot developers to log to Discord channels along with the standard terminal console, providing an easy way to track events and errors. ```bash pip install botlogging ``` ## Logging Levels The logging interface is designed to simulate the standard Python logging levels: `debug`, `info`, `warning`, and `error`. ### Debug / Info / Warning The first three levels by default do *not* send to Discord. However, setting `send=True` provides this. ```py from discord.ext import commands import botlogging token = "" bot = commands.Bot(token) logger = botlogging.BotLogger(bot=bot, name="mybot") logging_channel = 818657960038250216 @bot.command(name="echo") async def echo(ctx, *, input: str): await logger.info("Executing echo command", send=True, channel=logging_channel) await ctx.send(content=input) ``` ### Error For errors, the default is to send to Discord along with a traceback. Note, `critical=True` will add a mention to the message, so the guild owner will be notified directly. ```py @bot.command(name="run") async def run(ctx): try: await some_function() except Exception as e: await logger.error( "Could not execute some_function!", exception=e, context=context, channel=logging_channel, critical=True ) await ctx.send(content=input) ``` ## Console If you just want to log to the standard logging console, you can still reference it with the bot logger. This is useful because it is not an async method and can be used in synchronous code. ```py def setup_bot_config(bot, logger): logger.console.debug("Loading bot config") # ... ``` ## Delayed logs To avoid rate limiting issues, you can delay log events using a delayed logger. ```py from discord.ext import commands import botlogging logger = botlogging.DelayedLogger(bot=bot, name="mybot") ``` ## Custom embeds You can override the embeds sent to Discord by passing in your own embeds. ```py # create a custom embed embed = discord.Embed(description="Custom embed!") embed.add_field(name="Some custom field", value="some custom value") await logger.info("Executing echo command", send=True, channel=logging_channel, embed=embed) ``` Note: this still adds in base formatting to the embed such as color and title.


زبان مورد نیاز

مقدار نام
>=3.6 Python


نحوه نصب


نصب پکیج whl botlogging-1.0.1:

    pip install botlogging-1.0.1.whl


نصب پکیج tar.gz botlogging-1.0.1:

    pip install botlogging-1.0.1.tar.gz