Skip to content

Commit a662789

Browse files
committed
Removed progress
1 parent 99f4f49 commit a662789

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

README.md

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1350,19 +1350,6 @@ for i in tqdm([1, 2, 3]):
13501350
sleep(0.2)
13511351
```
13521352

1353-
### Progress
1354-
```python
1355-
# $ pip3 install progress
1356-
from progress.bar import Bar
1357-
from time import sleep
1358-
STEPS = 100
1359-
bar = Bar('Processing', max=STEPS)
1360-
for i in range(STEPS):
1361-
sleep(0.02)
1362-
bar.next()
1363-
bar.finish()
1364-
```
1365-
13661353

13671354
Basic Script Template
13681355
---------------------

0 commit comments

Comments
 (0)