__init__.py 417 B

123456789101112
  1. from .core.configuration import config_handler
  2. from .core.progress import alive_bar, alive_it
  3. VERSION = (3, 3, 0)
  4. __author__ = 'Rogério Sampaio de Almeida'
  5. __email__ = 'rsalmei@gmail.com'
  6. __version__ = '.'.join(map(str, VERSION))
  7. __description__ = 'A new kind of Progress Bar, with real-time throughput, ' \
  8. 'ETA, and very cool animations!'
  9. __all__ = ('alive_bar', 'alive_it', 'config_handler')