| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- """
- Sends updates to a Discord bot.
- Usage:
- >>> from tqdm.contrib.discord import tqdm, trange
- >>> for i in tqdm(iterable, token='{token}', channel_id='{channel_id}'):
- ... ...
- 
- """
- from __future__ import absolute_import
- import logging
- from os import getenv
- try:
- from disco.client import Client, ClientConfig
- except ImportError:
- raise ImportError("Please `pip install disco-py`")
- from tqdm.auto import tqdm as tqdm_auto
- from tqdm.utils import _range
- from .utils_worker import MonoWorker
- __author__ = {"github.com/": ["casperdcl"]}
- __all__ = ['DiscordIO', 'tqdm_discord', 'tdrange', 'tqdm', 'trange']
- class DiscordIO(MonoWorker):
- """Non-blocking file-like IO using a Discord Bot."""
- def __init__(self, token, channel_id):
- """Creates a new message in the given `channel_id`."""
- super(DiscordIO, self).__init__()
- config = ClientConfig()
- config.token = token
- client = Client(config)
- self.text = self.__class__.__name__
- try:
- self.message = client.api.channels_messages_create(
- channel_id, self.text)
- except Exception as e:
- tqdm_auto.write(str(e))
- def write(self, s):
- """Replaces internal `message`'s text with `s`."""
- if not s:
- return
- s = s.replace('\r', '').strip()
- if s == self.text:
- return # skip duplicate message
- self.text = s
- try:
- future = self.submit(self.message.edit, '`' + s + '`')
- except Exception as e:
- tqdm_auto.write(str(e))
- else:
- return future
- class tqdm_discord(tqdm_auto):
- """
- Standard `tqdm.auto.tqdm` but also sends updates to a Discord Bot.
- May take a few seconds to create (`__init__`).
- - create a discord bot (not public, no requirement of OAuth2 code
- grant, only send message permissions) & invite it to a channel:
- <https://discordpy.readthedocs.io/en/latest/discord.html>
- - copy the bot `{token}` & `{channel_id}` and paste below
- >>> from tqdm.contrib.discord import tqdm, trange
- >>> for i in tqdm(iterable, token='{token}', channel_id='{channel_id}'):
- ... ...
- """
- def __init__(self, *args, **kwargs):
- """
- Parameters
- ----------
- token : str, required. Discord token
- [default: ${TQDM_DISCORD_TOKEN}].
- channel_id : int, required. Discord channel ID
- [default: ${TQDM_DISCORD_CHANNEL_ID}].
- mininterval : float, optional.
- Minimum of [default: 1.5] to avoid rate limit.
- See `tqdm.auto.tqdm.__init__` for other parameters.
- """
- kwargs = kwargs.copy()
- logging.getLogger("HTTPClient").setLevel(logging.WARNING)
- self.dio = DiscordIO(
- kwargs.pop('token', getenv("TQDM_DISCORD_TOKEN")),
- kwargs.pop('channel_id', getenv("TQDM_DISCORD_CHANNEL_ID")))
- kwargs['mininterval'] = max(1.5, kwargs.get('mininterval', 1.5))
- super(tqdm_discord, self).__init__(*args, **kwargs)
- def display(self, **kwargs):
- super(tqdm_discord, self).display(**kwargs)
- fmt = self.format_dict
- if 'bar_format' in fmt and fmt['bar_format']:
- fmt['bar_format'] = fmt['bar_format'].replace('<bar/>', '{bar}')
- else:
- fmt['bar_format'] = '{l_bar}{bar}{r_bar}'
- fmt['bar_format'] = fmt['bar_format'].replace('{bar}', '{bar:10u}')
- self.dio.write(self.format_meter(**fmt))
- def __new__(cls, *args, **kwargs):
- """
- Workaround for mixed-class same-stream nested progressbars.
- See [#509](https://github.com/tqdm/tqdm/issues/509)
- """
- with cls.get_lock():
- try:
- cls._instances = tqdm_auto._instances
- except AttributeError:
- pass
- instance = super(tqdm_discord, cls).__new__(cls, *args, **kwargs)
- with cls.get_lock():
- try:
- # `tqdm_auto` may have been changed so update
- cls._instances.update(tqdm_auto._instances)
- except AttributeError:
- pass
- tqdm_auto._instances = cls._instances
- return instance
- def tdrange(*args, **kwargs):
- """
- A shortcut for `tqdm.contrib.discord.tqdm(xrange(*args), **kwargs)`.
- On Python3+, `range` is used instead of `xrange`.
- """
- return tqdm_discord(_range(*args), **kwargs)
- # Aliases
- tqdm = tqdm_discord
- trange = tdrange
|