File size: 272 Bytes
35d8463 |
1 2 3 4 5 6 7 8 9 10 11 |
import requests
import json
url = 'http://0.0.0.0:5000/api/'
data = [["baby you can drive my car"]]
j_data = json.dumps(data)
headers = {'content-type': 'application/json', 'Accept-Charset': 'UTF-8'}
r = requests.post(url, data=j_data, headers=headers)
print(r, r.text)
|