Metadata-Version: 2.1
Name: parse-with-dot-access
Version: 1.17.1
Summary: a fork of parse with dot access
Home-page: https://github.com/CircleOnCircles/parse
License: ISC
Author: Nutchanon Ninyawee
Author-email: me@nutchanon.org
Requires-Python: >=3.5,<4.0
Classifier: License :: OSI Approved
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Project-URL: Repository, https://github.com/CircleOnCircles/parse
Description-Content-Type: text/markdown

# a fork of parse with dot access

A mirror fork of [parse](https://github.com/r1chardj0n3s/parse) with dot notation access. 

## Get Started

```bash
pip install parse_with_dot_access
```

```python
from parse import parse

result = parse("{lat}, {long}", "12.21254, 105.15564")
print(result) # <Result () {'lat': '12.21254', 'long': '105.15564'}>
print(result["lat"]) # 12.21254 
print(result.long) # 105.15564
```

# For comprehensive documentation please refer to [the readme of upstream repo](https://github.com/r1chardj0n3s/parse).


