1Metadata-Version: 1.1
2Name: progressbar
3Version: 2.5
4Summary: Text progress bar library for Python.
5Home-page: http://code.google.com/p/python-progressbar
6Author: Nilton Volpato
7Author-email: nilton.volpato@gmail.com
8License: LICENSE.txt
9Description: Text progress bar library for Python.
10
11        A text progress bar is typically used to display the progress of a long
12        running operation, providing a visual cue that processing is underway.
13
14        The ProgressBar class manages the current progress, and the format of the line
15        is given by a number of widgets. A widget is an object that may display
16        differently depending on the state of the progress bar. There are three types
17        of widgets:
18         - a string, which always shows itself
19
20         - a ProgressBarWidget, which may return a different value every time its
21           update method is called
22
23         - a ProgressBarWidgetHFill, which is like ProgressBarWidget, except it
24           expands to fill the remaining width of the line.
25
26        The progressbar module is very easy to use, yet very powerful. It will also
27        automatically enable features like auto-resizing when the system supports it.
28
29Platform: UNKNOWN
30Classifier: Development Status :: 5 - Production/Stable
31Classifier: Environment :: Console
32Classifier: Intended Audience :: Developers
33Classifier: Intended Audience :: Information Technology
34Classifier: Intended Audience :: System Administrators
35Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
36Classifier: License :: OSI Approved :: BSD License
37Classifier: Operating System :: OS Independent
38Classifier: Programming Language :: Python
39Classifier: Programming Language :: Python :: 2
40Classifier: Programming Language :: Python :: 2.4
41Classifier: Programming Language :: Python :: 2.5
42Classifier: Programming Language :: Python :: 2.6
43Classifier: Programming Language :: Python :: 2.7
44Classifier: Programming Language :: Python :: 3
45Classifier: Topic :: Software Development :: Libraries
46Classifier: Topic :: Software Development :: User Interfaces
47Classifier: Topic :: Terminals
48