Metadata-Version: 2.1
Name: yantu-python-util
Version: 0.0.7
Summary: yantu python operate util
Home-page: https://github.com/HUSTAI/yantu-python-util
Author: sunhb
Author-email: 598924626@qq.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE.txt





## 主要功能
1. 基本文件操作
   - `json`文件读写 

>  load_json 读取json文件  
>  write_json 写入json文件


## 使用方法
```
pip install yantu_python_util
```

```python
from yantu_python_utils.operate_json import write_json,load_json

write_json(data="your json data",filepath="your file path")
load_json(filepath="your file path")
```


## 上传方法
1. 构建源文件

``` python
python setup.py sdist bdist_wheel build
```
3. 上传源文件
```shell
twine upload dist/*
```
