Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1from datetime import date 

2 

3from .utils import ( 

4 len_color, 

5 streams 

6) 

7from .shortcuts import progressbar 

8 

9from .widgets import ( 

10 Timer, 

11 ETA, 

12 AdaptiveETA, 

13 AbsoluteETA, 

14 DataSize, 

15 FileTransferSpeed, 

16 AdaptiveTransferSpeed, 

17 AnimatedMarker, 

18 Counter, 

19 Percentage, 

20 FormatLabel, 

21 SimpleProgress, 

22 Bar, 

23 ReverseBar, 

24 BouncingBar, 

25 RotatingMarker, 

26 VariableMixin, 

27 MultiRangeBar, 

28 MultiProgressBar, 

29 FormatLabelBar, 

30 PercentageLabelBar, 

31 Variable, 

32 DynamicMessage, 

33 FormatCustomText, 

34 CurrentTime 

35) 

36 

37from .bar import ( 

38 ProgressBar, 

39 DataTransferBar, 

40 NullBar, 

41) 

42from .base import UnknownLength 

43 

44 

45from .__about__ import ( 

46 __author__, 

47 __version__, 

48) 

49 

50__date__ = str(date.today()) 

51__all__ = [ 

52 'progressbar', 

53 'len_color', 

54 'streams', 

55 'Timer', 

56 'ETA', 

57 'AdaptiveETA', 

58 'AbsoluteETA', 

59 'DataSize', 

60 'FileTransferSpeed', 

61 'AdaptiveTransferSpeed', 

62 'AnimatedMarker', 

63 'Counter', 

64 'Percentage', 

65 'FormatLabel', 

66 'SimpleProgress', 

67 'Bar', 

68 'ReverseBar', 

69 'BouncingBar', 

70 'UnknownLength', 

71 'ProgressBar', 

72 'DataTransferBar', 

73 'RotatingMarker', 

74 'VariableMixin', 

75 'MultiRangeBar', 

76 'MultiProgressBar', 

77 'FormatLabelBar', 

78 'PercentageLabelBar', 

79 'Variable', 

80 'DynamicMessage', 

81 'FormatCustomText', 

82 'CurrentTime', 

83 'NullBar', 

84 '__author__', 

85 '__version__', 

86]