Metadata-Version: 2.4
Name: easyjsoner
Version: 0.0.1
Summary: The simplest module for quick work with json files
Author-email: qxuwll <ivanskarupo23@gmail.com>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.10.0
Description-Content-Type: text/markdown

The simplest module for quick work with json files

**Import**

    from easyjsoner.jsoner import jsoner

**Read**

    file = jsoner.read('path')	# Возвращает json файл

**Read_in**

    file = jsoner.read_from('path_to_json', 'path/to/key')	# Возвращает значение ключа из json файла

**Write**

    file = jsoner.write('path', data)	# Запись в json
