├── .gitignore ├── LICENSE ├── README.md ├── matplotlib-sixel ├── __init__.py ├── sixel.py └── xterm.py ├── requirements.txt ├── setup.py └── test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koppa/matplotlib-sixel/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koppa/matplotlib-sixel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koppa/matplotlib-sixel/HEAD/README.md -------------------------------------------------------------------------------- /matplotlib-sixel/__init__.py: -------------------------------------------------------------------------------- 1 | from .sixel import * 2 | -------------------------------------------------------------------------------- /matplotlib-sixel/sixel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koppa/matplotlib-sixel/HEAD/matplotlib-sixel/sixel.py -------------------------------------------------------------------------------- /matplotlib-sixel/xterm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koppa/matplotlib-sixel/HEAD/matplotlib-sixel/xterm.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | matplotlib 2 | numpy 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koppa/matplotlib-sixel/HEAD/setup.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koppa/matplotlib-sixel/HEAD/test.py --------------------------------------------------------------------------------