summaryrefslogtreecommitdiffstats
path: root/tqdm/contrib/telegram.py
diff options
context:
space:
mode:
Diffstat (limited to 'tqdm/contrib/telegram.py')
-rw-r--r--tqdm/contrib/telegram.py12
1 files changed, 3 insertions, 9 deletions
diff --git a/tqdm/contrib/telegram.py b/tqdm/contrib/telegram.py
index 99cbe8c..cbeadf2 100644
--- a/tqdm/contrib/telegram.py
+++ b/tqdm/contrib/telegram.py
@@ -6,10 +6,8 @@ Usage:
>>> for i in trange(10, token='{token}', chat_id='{chat_id}'):
... ...
-![screenshot](https://img.tqdm.ml/screenshot-telegram.gif)
+![screenshot](https://tqdm.github.io/img/screenshot-telegram.gif)
"""
-from __future__ import absolute_import
-
from os import getenv
from warnings import warn
@@ -17,7 +15,6 @@ from requests import Session
from ..auto import tqdm as tqdm_auto
from ..std import TqdmWarning
-from ..utils import _range
from .utils_worker import MonoWorker
__author__ = {"github.com/": ["casperdcl"]}
@@ -147,11 +144,8 @@ class tqdm_telegram(tqdm_auto):
def ttgrange(*args, **kwargs):
- """
- A shortcut for `tqdm.contrib.telegram.tqdm(xrange(*args), **kwargs)`.
- On Python3+, `range` is used instead of `xrange`.
- """
- return tqdm_telegram(_range(*args), **kwargs)
+ """Shortcut for `tqdm.contrib.telegram.tqdm(range(*args), **kwargs)`."""
+ return tqdm_telegram(range(*args), **kwargs)
# Aliases