Metadata-Version: 2.1
Name: json-manager2.0
Version: 1.0.2
Summary: An json manager
Home-page: https://github.com/BOXERRMD/JsonManager
Author: BOXERRMD
Author-email: vagabonwalybi@gmail.com
Project-URL: Documentation, https://github.com/BOXERRMD/JsonManager/wiki
Project-URL: GitHub, https://github.com/BOXERRMD/JsonManager
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: Microsoft :: Windows :: Windows 11
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE

# JsonManager
 Json Manager for load, write and modify your json data


__Made by BOXER__


```python
#import module
from json_manager import setup

#setup your files
data = setup({'file_1': {'directory/myfile_1.json'},
              'file_2': 'directory/sub_directory/myfile_2.json'})

#print data files
print(data.file_1)
#output : {...}

print(data.file_2)
#output : {...}

#You can access sub_dictionary to
print(data.file_1.my_data)
#output : the value from the key "my_data"


'''Write all files to save data'''
data.write()
#This will rewrite all the files with their new data located in "data".
```
