Metadata-Version: 2.1
Name: lzgym-tool
Version: 0.0.3
Summary: LZGYM's Tool
Home-page: https://github.com/jackyli0318/lzgym-tool
Author: Jacky Lee
Author-email: emulezhi@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.5
Description-Content-Type: text/markdown

LZ & GYM's Python Tool

Author: LZ & GYM

# Example Package

This is a simple example about how to use lzgym's tool:

from lzgym-tool import json2dict, json_writer

# convert a json into a dictionary
lz_dict = json2dict("example.json")

# write a dictionary into a json
json_writer("example.json", lz_dict)


# More info about the methods:
help(json2dict)

help(json_writer)


