Metadata-Version: 2.1
Name: parse_with_dot_access
Version: 1.20.0
Summary: a daily rebase of parse with dot access
Home-page: https://github.com/CircleOnCircles/parse
License: ISC
Author: Richard Jones
Author-email: richard@python.org
Maintainer: Wim Glenn
Maintainer-email: hey@wimglenn.com
Requires-Python: >=3.7,<4.0
Classifier: License :: OSI Approved
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Project-URL: Repository, https://github.com/CircleOnCircles/parse
Description-Content-Type: text/markdown

# parse with dot access

A daily rebase of [`parse`](https://github.com/r1chardj0n3s/parse) but, with dot notation access 😉.

A bit of [history](https://github.com/r1chardj0n3s/parse/issues/117) is that the author don't like this idea. so, I forked.

## 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).


