diff --git a/README.md b/README.md index b196c36..5955284 100644 --- a/README.md +++ b/README.md @@ -13,10 +13,15 @@ pip install hues Then, in your scripts, do this: ```python ->>> from hues import hue ->>> print(hue('unicorns!').bright_cyan.bold) +>>> import hues +>>> hues.log('42') +>>> hues.info('42') ``` +### Configuration + +[TODO] + _whoa!_ All the colors, styles and backgrounds are available as object attributes. The chainable syntax is optimized deterministically using a push down automaton, so when you're being particularly indecisive, you can: diff --git a/hues/__init__.py b/hues/__init__.py index 4c1a5b0..1dcfdbd 100644 --- a/hues/__init__.py +++ b/hues/__init__.py @@ -1,5 +1,5 @@ # Unicorns -from .huestr import HueString as hue +from .huestr import HueString as huestr from .console import Config, SimpleConsole, PowerlineConsole __version__ = (0, 2, 1) @@ -19,4 +19,4 @@ del conf -__all__ = ('hue', 'console', 'log', 'info', 'warn', 'error', 'success') +__all__ = ('huestr', 'console', 'log', 'info', 'warn', 'error', 'success')