python
1import json 2 3HOSTNAME = "localhost" 4PORT = "3000" 5URL = "http://" + HOSTNAME + ":" + PORT + "/api/grid/create" 6 7def test(): 8 9 data = { 10 'sid': "2", 11 'departureTime': "00:00", 12 'origin': "2_2", 13 'destination': "2_2", 14 } 15 16 # データをjsonファイルとしてpost 17 res = requests.post(URL, json.dumps(data), headers={'Content-Type': 'application/json'}) 18 print(json.loads(res.text)) 19
このコード内の最後の行でprintしたjsonを別のpythonにてstring型として使用したいです。
方法としてどのようなものがあるのかを教えていただきたいです。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。