Skip to content

Commit 24d3497

Browse files
committed
add tqdm examples
1 parent 012df43 commit 24d3497

1 file changed

Lines changed: 31 additions & 0 deletions

File tree

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
#!/usr/bin/python
2+
# -*- coding: utf-8 -*-
3+
"""
4+
Created by PyCharm.
5+
File Name: LinuxBashShellScriptForOps:tqdm-examples.py
6+
Version: 0.0.1
7+
Author: dgden
8+
Author Email: dgdenterprise@gmail.com
9+
URL: https://github.com/DingGuodong/LinuxBashShellScriptForOps
10+
Download URL: https://github.com/DingGuodong/LinuxBashShellScriptForOps/tarball/master
11+
Create Date: 2021/3/10
12+
Create Time: 9:44
13+
Description: progress bar
14+
Long Description:
15+
References: https://pypi.org/project/tqdm/
16+
https://github.com/tqdm/tqdm/tree/master/examples
17+
Prerequisites: pip install tqdm
18+
Development Status: 3 - Alpha, 5 - Production/Stable
19+
Environment: Console
20+
Intended Audience: System Administrators, Developers, End Users/Desktop
21+
License: Freeware, Freely Distributable
22+
Natural Language: English, Chinese (Simplified)
23+
Operating System: POSIX :: Linux, Microsoft :: Windows
24+
Programming Language: Python :: 2.6
25+
Programming Language: Python :: 2.7
26+
Topic: Utilities
27+
"""
28+
from tqdm import tqdm
29+
30+
for i in tqdm(range(10000), ascii=True):
31+
pass

0 commit comments

Comments
 (0)