1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

#!/usr/bin/python 

# -*- coding: utf-8 -*- 

# 

# progressbar - Text progress bar library for Python. 

# Copyright (c) 2005 Nilton Volpato 

# 

# This library is free software; you can redistribute it and/or 

# modify it under the terms of the GNU Lesser General Public 

# License as published by the Free Software Foundation; either 

# version 2.1 of the License, or (at your option) any later version. 

# 

# This library is distributed in the hope that it will be useful, 

# but WITHOUT ANY WARRANTY; without even the implied warranty of 

# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 

# Lesser General Public License for more details. 

# 

# You should have received a copy of the GNU Lesser General Public 

# License along with this library; if not, write to the Free Software 

# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 

 

"""Text progress bar library for Python. 

 

A text progress bar is typically used to display the progress of a long 

running operation, providing a visual cue that processing is underway. 

 

The ProgressBar class manages the current progress, and the format of the line 

is given by a number of widgets. A widget is an object that may display 

differently depending on the state of the progress bar. There are three types 

of widgets: 

- a string, which always shows itself 

 

- a ProgressBarWidget, which may return a different value every time its 

update method is called 

 

- a ProgressBarWidgetHFill, which is like ProgressBarWidget, except it 

expands to fill the remaining width of the line. 

 

The progressbar module is very easy to use, yet very powerful. It will also 

automatically enable features like auto-resizing when the system supports it. 

""" 

 

__author__ = 'Nilton Volpato' 

__author_email__ = 'nilton.volpato@gmail.com' 

__date__ = '2011-05-14' 

__version__ = '2.5' 

 

from .compat import * 

from .widgets import * 

from .progressbar import *