File tree Expand file tree Collapse file tree
functions/others/ui/progress Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments