py-debug
========

A debug package for noder. inspired by [debug](https://github.com/visionmedia/debug).

## Install

```bash
$ pip install py_debug
```

## Example

example.py

```python
import py_debug as pydebug

debuga = pydebug.debug('example:a')
debugb = pydebug.debug('example:b')

debuga('aaa')
debugb('bbb')
```

command

```bash
$ DEBUG=* python example.py
```

## License

(The MIT License)
