Metadata-Version: 2.1
Name: tssplit
Version: 1.0.3
Summary: Trivial split for strings with escaped characters and quotes
Home-page: https://github.com/mezantrop/tssplit
Author: Mikhail Zakharov
Author-email: zmey20000@yahoo.com
License: bsd-2-clause
Keywords: split,parse,quote
Platform: UNKNOWN
Classifier: License :: OSI Approved :: BSD License
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development
Classifier: Topic :: Text Processing
Classifier: Topic :: Text Processing :: Filters
Classifier: Topic :: Text Processing :: General
Description-Content-Type: text/markdown

# tssplit - Trivial split for strings with escaped characters and quotes

## Installation
```shell script
pip install tssplit
```

## Usage
```python
from tssplit import tssplit

tssplit('ooooo/ooo|/ooo"XXX/XXX"ooo/"ooo/ooooo',  quote='"', delimiter='/', escape='|', trim='')
['ooooo', 'ooo/oooXXX/XXXooo', 'ooo/ooooo']
```

## Changelog
* 2020.03.28    v1.0    Initial release
* 2020.03.28    v1.0.1  Many quick fixes to make all things work in PyPI
* 2020.03.29    v1.0.2  Minor fixes, Readme update, Long description provided
* 2020.03.29    v1.0.3  Trim option to strip() characters from chunks


