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 GranularBar, 

30 FormatLabelBar, 

31 PercentageLabelBar, 

32 Variable, 

33 DynamicMessage, 

34 FormatCustomText, 

35 CurrentTime 

36) 

37 

38from .bar import ( 

39 ProgressBar, 

40 DataTransferBar, 

41 NullBar, 

42) 

43from .base import UnknownLength 

44 

45 

46from .__about__ import ( 

47 __author__, 

48 __version__, 

49) 

50 

51__date__ = str(date.today()) 

52__all__ = [ 

53 'progressbar', 

54 'len_color', 

55 'streams', 

56 'Timer', 

57 'ETA', 

58 'AdaptiveETA', 

59 'AbsoluteETA', 

60 'DataSize', 

61 'FileTransferSpeed', 

62 'AdaptiveTransferSpeed', 

63 'AnimatedMarker', 

64 'Counter', 

65 'Percentage', 

66 'FormatLabel', 

67 'SimpleProgress', 

68 'Bar', 

69 'ReverseBar', 

70 'BouncingBar', 

71 'UnknownLength', 

72 'ProgressBar', 

73 'DataTransferBar', 

74 'RotatingMarker', 

75 'VariableMixin', 

76 'MultiRangeBar', 

77 'MultiProgressBar', 

78 'GranularBar', 

79 'FormatLabelBar', 

80 'PercentageLabelBar', 

81 'Variable', 

82 'DynamicMessage', 

83 'FormatCustomText', 

84 'CurrentTime', 

85 'NullBar', 

86 '__author__', 

87 '__version__', 

88]