Metadata-Version: 2.1
Name: objecttoclass
Version: 0.0.1
Summary: Simple Python script to convert a dict into a class instance 
Author: Hussein Naim
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENCE

# Object To Class
## a simple python script to convert dict into a class instance 

> example 

```python
# import the package 
from objecttoclass import ObjectToClass as OTC
# or : from objecttoclass import OTC (Variable holding the ObjectToClass instance )

# set the data you want to convert 
data = {
    "name":"Hussein Naim"
}

# new OTC instance
instance = OTC(data)

# print out the name attr
print(instance.name)

# output: Hussein Naim

```


