├── .gitignore ├── LISCENSE.txt ├── MANIFEST ├── README.md ├── drawnow ├── __init__.py └── drawnow.py ├── setup.cfg ├── setup.py ├── test-data ├── mandrill.png ├── matlab_drawnow.m ├── test.gif └── test.mov └── test.py /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | dist/ 3 | drawnow.egg-info/ 4 | __pycache__/ 5 | -------------------------------------------------------------------------------- /LISCENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsievert/python-drawnow/HEAD/LISCENSE.txt -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsievert/python-drawnow/HEAD/MANIFEST -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsievert/python-drawnow/HEAD/README.md -------------------------------------------------------------------------------- /drawnow/__init__.py: -------------------------------------------------------------------------------- 1 | from .drawnow import * 2 | -------------------------------------------------------------------------------- /drawnow/drawnow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsievert/python-drawnow/HEAD/drawnow/drawnow.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | 2 | [metadata] 3 | description-file = README.md 4 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsievert/python-drawnow/HEAD/setup.py -------------------------------------------------------------------------------- /test-data/mandrill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsievert/python-drawnow/HEAD/test-data/mandrill.png -------------------------------------------------------------------------------- /test-data/matlab_drawnow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsievert/python-drawnow/HEAD/test-data/matlab_drawnow.m -------------------------------------------------------------------------------- /test-data/test.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsievert/python-drawnow/HEAD/test-data/test.gif -------------------------------------------------------------------------------- /test-data/test.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsievert/python-drawnow/HEAD/test-data/test.mov -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stsievert/python-drawnow/HEAD/test.py --------------------------------------------------------------------------------