Metadata-Version: 2.4
Name: masked-split
Version: 0.0.2
Summary: A package for splitting texts while masking desired substrings.
Project-URL: Homepage, https://github.com/leesugil/masked_split
Project-URL: Issues, https://github.com/leesugil/masked_split/issues
Author-email: Sugil Steve Lee <sugilmath@gmail.com>
License-Expression: GPL-3.0-or-later
License-File: LICENSE
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# Masked Split
Split text with masked substrings where delimiters would not apply.

Input text: `"Hello, World!" {USER.NAME} Said. What a surprise! I was happy.`

Delimiters: `['!', '.']`

Masks: `[['"', '"'], ['{', '}']]`

Result: `['"Hello, World!" {USER.NAME} Said.', 'What a surprise!', 'I was happy.']`
