Metadata-Version: 2.1
Name: dotsplit
Version: 0.1.0
Summary: Transform dot-delimited strings to an array of python strings.
Home-page: https://github.com/wilmoore/dotsplit.py
Keywords: array,dot,namespace,split,string
Author: Deyon Samuel Washington
Author-email: winnersonly@realpolyglot.com
Requires-Python: >=3.8,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Project-URL: Repository, https://github.com/wilmoore/dotsplit.py
Description-Content-Type: text/markdown

# dotsplit
> Transform dot-delimited strings to array of python strings.
```python
>>> import dotsplit
>>> dotsplit('group.0.section.a.seat.3')
['group', '0', 'section', 'a', 'seat', '3']
```

[![Downloads](https://pepy.tech/badge/dotsplit/month)](https://pepy.tech/project/dotsplit/month)
[![Supported Versions](https://img.shields.io/pypi/pyversions/dotsplit.svg)](https://pypi.org/project/dotsplit)
[![Contributors](https://img.shields.io/github/contributors/wilmoore/dotsplit.svg)](https://github.com/wilmoore/dotsplit.py/graphs/contributors)

## Installation
> dotsplit is available on PyPI:
###### poetry
```console
❯ poetry install dotsplit
```
###### pip
```console
❯ python -m pip install dotsplit
```

## Testing
> to run the unit test suite, cd to the root directory and run:
```
❯ poetry install
❯ poetry run pytest
```

## Licenses
[![GitHub license](https://img.shields.io/github/license/wilmoore/dotsplit.svg)](https://github.com/wilmoore/dotsplit.py/blob/master/license)

