Metadata-Version: 2.1
Name: deljson
Version: 0.0.2
Summary: 刪除json值
Home-page: UNKNOWN
Author: seanbbear
Author-email: ccoccc14@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# deljson
用於刪除json值

# 安裝
```
pip install deljson
```

## 範例
```py
import deljson
data={"name":"hans","year":2023}
a=deljson.start(["name"])
print(a)
#{"year":2023}
```

