Skip to content

Commit

Permalink
Updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
prashnts committed Oct 2, 2016
1 parent f69fc00 commit 634ae2f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions hues/__init__.py
Original file line number Diff line number Diff line change
@@ -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)
Expand All @@ -19,4 +19,4 @@

del conf

__all__ = ('hue', 'console', 'log', 'info', 'warn', 'error', 'success')
__all__ = ('huestr', 'console', 'log', 'info', 'warn', 'error', 'success')

0 comments on commit 634ae2f

Please sign in to comment.