Metadata-Version: 2.4
Name: masked-split
Version: 0.0.1
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.']
