├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── MANIFEST.in ├── README.md ├── ansi ├── __init__.py ├── color.py ├── colour │ ├── __init__.py │ ├── base.py │ ├── bg.py │ ├── fg.py │ ├── fx.py │ └── rgb.py ├── cursor.py ├── iterm.py ├── osc.py ├── py.typed └── sequence.py ├── pyproject.toml ├── setup.cfg ├── test_ansi.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehmaze/ansi/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehmaze/ansi/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehmaze/ansi/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehmaze/ansi/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehmaze/ansi/HEAD/README.md -------------------------------------------------------------------------------- /ansi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehmaze/ansi/HEAD/ansi/__init__.py -------------------------------------------------------------------------------- /ansi/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehmaze/ansi/HEAD/ansi/color.py -------------------------------------------------------------------------------- /ansi/colour/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehmaze/ansi/HEAD/ansi/colour/__init__.py -------------------------------------------------------------------------------- /ansi/colour/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehmaze/ansi/HEAD/ansi/colour/base.py -------------------------------------------------------------------------------- /ansi/colour/bg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehmaze/ansi/HEAD/ansi/colour/bg.py -------------------------------------------------------------------------------- /ansi/colour/fg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehmaze/ansi/HEAD/ansi/colour/fg.py -------------------------------------------------------------------------------- /ansi/colour/fx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehmaze/ansi/HEAD/ansi/colour/fx.py -------------------------------------------------------------------------------- /ansi/colour/rgb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehmaze/ansi/HEAD/ansi/colour/rgb.py -------------------------------------------------------------------------------- /ansi/cursor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehmaze/ansi/HEAD/ansi/cursor.py -------------------------------------------------------------------------------- /ansi/iterm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehmaze/ansi/HEAD/ansi/iterm.py -------------------------------------------------------------------------------- /ansi/osc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehmaze/ansi/HEAD/ansi/osc.py -------------------------------------------------------------------------------- /ansi/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansi/sequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehmaze/ansi/HEAD/ansi/sequence.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehmaze/ansi/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehmaze/ansi/HEAD/setup.cfg -------------------------------------------------------------------------------- /test_ansi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehmaze/ansi/HEAD/test_ansi.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehmaze/ansi/HEAD/tox.ini --------------------------------------------------------------------------------