├── .gitignore ├── LICENSE ├── README.md ├── pyproject.toml ├── requirements-dev.lock ├── requirements.lock ├── rich_pixels ├── __init__.py ├── _pixel.py ├── _renderer.py └── py.typed └── tests ├── .sample_data ├── ascii │ └── rich_pixels.txt └── images │ └── bulbasaur.png ├── __init__.py ├── __snapshots__ └── test_pixel │ ├── test_ascii_text.svg │ ├── test_png_image_path.svg │ └── test_png_image_path_with_halfpixels.svg └── test_pixel.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenburns/rich-pixels/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenburns/rich-pixels/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenburns/rich-pixels/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenburns/rich-pixels/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenburns/rich-pixels/HEAD/requirements-dev.lock -------------------------------------------------------------------------------- /requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenburns/rich-pixels/HEAD/requirements.lock -------------------------------------------------------------------------------- /rich_pixels/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenburns/rich-pixels/HEAD/rich_pixels/__init__.py -------------------------------------------------------------------------------- /rich_pixels/_pixel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenburns/rich-pixels/HEAD/rich_pixels/_pixel.py -------------------------------------------------------------------------------- /rich_pixels/_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenburns/rich-pixels/HEAD/rich_pixels/_renderer.py -------------------------------------------------------------------------------- /rich_pixels/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/.sample_data/ascii/rich_pixels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenburns/rich-pixels/HEAD/tests/.sample_data/ascii/rich_pixels.txt -------------------------------------------------------------------------------- /tests/.sample_data/images/bulbasaur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenburns/rich-pixels/HEAD/tests/.sample_data/images/bulbasaur.png -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/__snapshots__/test_pixel/test_ascii_text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenburns/rich-pixels/HEAD/tests/__snapshots__/test_pixel/test_ascii_text.svg -------------------------------------------------------------------------------- /tests/__snapshots__/test_pixel/test_png_image_path.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenburns/rich-pixels/HEAD/tests/__snapshots__/test_pixel/test_png_image_path.svg -------------------------------------------------------------------------------- /tests/__snapshots__/test_pixel/test_png_image_path_with_halfpixels.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenburns/rich-pixels/HEAD/tests/__snapshots__/test_pixel/test_png_image_path_with_halfpixels.svg -------------------------------------------------------------------------------- /tests/test_pixel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrenburns/rich-pixels/HEAD/tests/test_pixel.py --------------------------------------------------------------------------------