├── .coveragerc ├── .coveralls.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── demo.py ├── devrequirements.txt ├── setup.py └── vlogging ├── __init__.py └── tests ├── basic.py ├── corner_cases.py ├── dummies ├── PIL.py ├── __init__.py ├── cv2.py └── pylab.py └── lenna.jpg /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dchaplinsky/visual-logging/HEAD/.coveragerc -------------------------------------------------------------------------------- /.coveralls.yml: -------------------------------------------------------------------------------- 1 | # .coveralls.yml 2 | repo_token: GzsXpWT6B1llGwECNpJAyzcpXB6KK89Sq -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dchaplinsky/visual-logging/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dchaplinsky/visual-logging/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dchaplinsky/visual-logging/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dchaplinsky/visual-logging/HEAD/README.md -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dchaplinsky/visual-logging/HEAD/demo.py -------------------------------------------------------------------------------- /devrequirements.txt: -------------------------------------------------------------------------------- 1 | matplotlib==1.4.1 2 | Pillow==2.5.1 3 | coveralls -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dchaplinsky/visual-logging/HEAD/setup.py -------------------------------------------------------------------------------- /vlogging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dchaplinsky/visual-logging/HEAD/vlogging/__init__.py -------------------------------------------------------------------------------- /vlogging/tests/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dchaplinsky/visual-logging/HEAD/vlogging/tests/basic.py -------------------------------------------------------------------------------- /vlogging/tests/corner_cases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dchaplinsky/visual-logging/HEAD/vlogging/tests/corner_cases.py -------------------------------------------------------------------------------- /vlogging/tests/dummies/PIL.py: -------------------------------------------------------------------------------- 1 | raise ImportError() 2 | -------------------------------------------------------------------------------- /vlogging/tests/dummies/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vlogging/tests/dummies/cv2.py: -------------------------------------------------------------------------------- 1 | raise ImportError() 2 | -------------------------------------------------------------------------------- /vlogging/tests/dummies/pylab.py: -------------------------------------------------------------------------------- 1 | raise ImportError() 2 | -------------------------------------------------------------------------------- /vlogging/tests/lenna.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dchaplinsky/visual-logging/HEAD/vlogging/tests/lenna.jpg --------------------------------------------------------------------------------