Metadata-Version: 2.0
Name: indentutils
Version: 1.1
Summary: A package to process indented text
Home-page: UNKNOWN
Author: FranchuFranchu
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# indentutlis
## How to use
    >>> import indentutils
    >>> indentutils.process('''
    ... for i in cats:
    ...     print('i')
    ...     if i == '':
    ...         break
    ... ''')
    ['for i in cats:', ['print(i)', "if i == '':", ['break']]]

