Metadata-Version: 2.1
Name: pyonize
Version: 0.1.1
Summary: convert json|dict to python object
Home-page: https://github.com/BilalAlpaslan/Pyonize
License: LICENSE
Author: Bilal Alpaslan
Author-email: m.bilal.alpaslan@gmail.com
Requires-Python: >=3.7
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown

# Pyon
convert json|dict to python object


```py
from pyon import pyonize


def example():
    
    deneme = pyonize({"id":1,"name":"bilal","job":{"id":1,"title":"CTO"}})

    print(type(deneme))
    print(deneme.name)
    print(deneme.job)
    print(deneme.job.title)

example()
```

<br>
<hr>

# Setup

this project not available in PyPI now (coming soon). if you want add this library your workspace clone this repo and watch a this steps:

### -**First**

Download wheel and setuptools libraries

```
pip install wheel setuptools
```

### -**After** 

Make sure you are in the same folder as setup.py

```
python setup.py bdist_wheel --universal
```

### -**Finally**

Stay in the same directory and copy the name of the .whl file in the dist folder

```
pip install ./dist/copied file name
```

Actually the filename is by default: "pyon-0.1.0-py2.py3-none-any.whl"
<hr>

