Metadata-Version: 2.1
Name: Pydefold
Version: 1.3.9
Summary: Python Package made by Mhadhbi Issam . 
Home-page: https://gitlab.com/game-dev-comapny/libraries/pydefold
Author: Mhadhbi Issam
Author-email: mhadhbixissam@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: protobuf


## Install : 
```bash 
pip install PyDefold
```

## Example : 
```python
from PyDefold import Defold  , version
from google.protobuf.json_format import MessageToJson
from google.protobuf.text_format import MessageToString , Parse 

print(f'defoldsdk version = {version}')
collection = Defold.CollectionDesc()
print(MessageToString(collection))
```
