__init__.py 614 B

1234567891011
  1. from .exhibit import Show, show_bars, show_spinners, show_themes, showtime
  2. from .internal import BARS, SPINNERS, THEMES
  3. __all__ = (
  4. 'BARS', 'SPINNERS', 'THEMES', 'Show', 'showtime', 'show_spinners', 'show_bars', 'show_themes',
  5. )
  6. # I want to create some kind of extension point here. Then users would be able to create
  7. # and share their custom styles with the community! Ideally it should be simple to distribute
  8. # them, don't know for sure how. As a last resort, I could include them all here in this package,
  9. # via the usual fork / pull request contribution, and I'll dynamically find and make them usable.