| 1234567891011 |
- import requests
- import json
- with open("./tt.json", "r", encoding="utf-8") as f:
- k = json.load(f)
- # cbd_photo qxz_add
- # http://192.168.0.36:8000
- response = requests.post(url="http://60.14.40.10:8002/api/cbd_photo", data=json.dumps(k))
- print(response.text)
|