1. 程式人生 > >Python 使用 requests post 讀取的 json 的方法

Python 使用 requests post 讀取的 json 的方法

def create_module_index(module_name):
    url = "http://localhost:9200/{}".format(module_name.lower())
    with open("./create_index.json", "r", encoding="utf-8") as file_object:
        json_obj = json.load(file_object)
        rep = session.put(url, json=json_obj)
        print(rep.status_code)
        print(rep.text)