├── .circleci └── config.yml ├── .gitignore ├── .screenshots ├── nicelog-150408.png ├── nicelog.png ├── nicelog2.png └── nicelog3.png ├── CHANGELOG.rst ├── MANIFEST.in ├── Makefile ├── README.rst ├── nicelog ├── __init__.py ├── colorers │ ├── __init__.py │ ├── base.py │ └── terminal.py ├── formatters │ └── __init__.py ├── styles │ ├── __init__.py │ └── base.py └── utils.py ├── scripts └── manual_test.py ├── setup.cfg ├── setup.py ├── tests ├── requirements.txt └── test_formatters │ └── test_colorful.py └── tox.ini /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rshk/nicelog/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rshk/nicelog/HEAD/.gitignore -------------------------------------------------------------------------------- /.screenshots/nicelog-150408.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rshk/nicelog/HEAD/.screenshots/nicelog-150408.png -------------------------------------------------------------------------------- /.screenshots/nicelog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rshk/nicelog/HEAD/.screenshots/nicelog.png -------------------------------------------------------------------------------- /.screenshots/nicelog2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rshk/nicelog/HEAD/.screenshots/nicelog2.png -------------------------------------------------------------------------------- /.screenshots/nicelog3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rshk/nicelog/HEAD/.screenshots/nicelog3.png -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rshk/nicelog/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include *.rst 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rshk/nicelog/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rshk/nicelog/HEAD/README.rst -------------------------------------------------------------------------------- /nicelog/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rshk/nicelog/HEAD/nicelog/__init__.py -------------------------------------------------------------------------------- /nicelog/colorers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nicelog/colorers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rshk/nicelog/HEAD/nicelog/colorers/base.py -------------------------------------------------------------------------------- /nicelog/colorers/terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rshk/nicelog/HEAD/nicelog/colorers/terminal.py -------------------------------------------------------------------------------- /nicelog/formatters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rshk/nicelog/HEAD/nicelog/formatters/__init__.py -------------------------------------------------------------------------------- /nicelog/styles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nicelog/styles/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rshk/nicelog/HEAD/nicelog/styles/base.py -------------------------------------------------------------------------------- /nicelog/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rshk/nicelog/HEAD/nicelog/utils.py -------------------------------------------------------------------------------- /scripts/manual_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rshk/nicelog/HEAD/scripts/manual_test.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rshk/nicelog/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rshk/nicelog/HEAD/setup.py -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rshk/nicelog/HEAD/tests/requirements.txt -------------------------------------------------------------------------------- /tests/test_formatters/test_colorful.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rshk/nicelog/HEAD/tests/test_formatters/test_colorful.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rshk/nicelog/HEAD/tox.ini --------------------------------------------------------------------------------