Metadata-Version: 2.4
Name: ansistrip
Version: 0.2.4
Summary: Mini-lib to strip ANSI escape codes from strings
License-Expression: MIT
Project-URL: Homepage, https://github.com/carlosplanchon/ansistrip
Project-URL: Repository, https://github.com/carlosplanchon/ansistrip
Project-URL: Issues, https://github.com/carlosplanchon/ansistrip/issues
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Terminals
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Typing :: Typed
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# Ansistrip
*Mini-lib to strip ANSI Escape codes from a string.*

## Installation
### Install with uv:
```
uv add ansistrip
```

## Usage
```
In [1]: import ansistrip

In [2]: text =  "\x1b[1m\x1b[38;5;10mtest\x1b0m"

In [3]: ansistrip.ansi_strip(text)

Out[3]: 'test'
```
