mirror of https://github.com/tqdm/tqdm.git
update README
This commit is contained in:
parent
ef61853720
commit
7b97027f08
|
@ -33,7 +33,7 @@ pip install -e git+https://github.com/tqdm/tqdm.git#egg=master
|
||||||
|
|
||||||
```python
|
```python
|
||||||
def tqdm(iterable, desc=None, total=None, leave=False, file=sys.stderr,
|
def tqdm(iterable, desc=None, total=None, leave=False, file=sys.stderr,
|
||||||
ncols=None, mininterval=0.1, miniters=None, ascii=False):
|
ncols=None, mininterval=0.1, miniters=None, ascii=None):
|
||||||
"""
|
"""
|
||||||
Decorate an iterable object, returning an iterator which acts exactly
|
Decorate an iterable object, returning an iterator which acts exactly
|
||||||
like the orignal iterable, but prints a dynamically updating
|
like the orignal iterable, but prints a dynamically updating
|
||||||
|
@ -64,8 +64,8 @@ def tqdm(iterable, desc=None, total=None, leave=False, file=sys.stderr,
|
||||||
miniters : int, optional
|
miniters : int, optional
|
||||||
Minimum progress update interval, in iterations [default: None].
|
Minimum progress update interval, in iterations [default: None].
|
||||||
ascii : bool, optional
|
ascii : bool, optional
|
||||||
Whether to only fill the meter with ASCII characters (1-9 #).
|
If not set, use unicode (▏▎▋█ █) to fill the meter
|
||||||
If not set, use unicode (▏▎▋█ █) [default: False].
|
[default: False]. The fallback is to use ASCII characters (1-9 #).
|
||||||
|
|
||||||
Returns
|
Returns
|
||||||
-------
|
-------
|
||||||
|
|
Loading…
Reference in New Issue