Transform dot-delimited strings to array of python strings.
>>> import dotsplit
>>> dotsplit('group.0.section.a.seat.3')
['group', '0', 'section', 'a', 'seat', '3']
dotsplit is available on PyPI:
❯ poetry install dotsplit
❯ python -m pip install dotsplit
to run the unit test suite, cd to the root directory and run:
❯ poetry install
❯ poetry run pytest