2020-05-21 23:28:57 +02:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
import requests
|
|
|
|
import os.path
|
|
|
|
import json
|
|
|
|
|
|
|
|
URL = "http://127.0.0.1:8080/sample"
|
|
|
|
|
|
|
|
FILE = 'CommonStarling_102761_45.wav'
|
|
|
|
|
|
|
|
files = {
|
|
|
|
"file": (os.path.basename(FILE), open(FILE,'rb').read(), 'audio/wave', {'Content-length' : os.path.getsize(FILE)}),
|
2020-05-22 00:39:25 +02:00
|
|
|
"description" : (None, json.dumps({"device_id" : "123"}), "application/json")
|
2020-05-21 23:28:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
r = requests.post(URL,files=files)
|
|
|
|
print("Content: ", r.content)
|
|
|
|
print("Headers:", r.headers)
|
|
|
|
r.raise_for_status()
|