-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.py
61 lines (47 loc) · 1.33 KB
/
test.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import sys
import requests
import json
import base64
import cStringIO
content = {
"content": {
},
"meta": {
"audio": {
"type": False,
"data": False
}
}
}
content_type = 'data:image/%s;base64,'
headers = {
'Content-Type' : 'application/json'
}
def get_image_type(loc):
return loc.split('.')[-1]
def image_to_b64(file):
return base64.b64encode(file.read())
def post(url, image_loc, output):
image_type = get_image_type(image_loc)
with open(image_loc, "rb") as img:
content['content']['data'] = (content_type % image_type) + image_to_b64(img)
service = '%s/service' % url
print "POST to %s..." % service
resp = requests.post(service, data = json.dumps(content), headers = headers).json()
blob = resp['content']['data'].split(',')[1]
decoded = base64.b64decode(blob)
file_like = cStringIO.StringIO(decoded)
with open(output, 'wb') as out:
out.write(file_like.read())
print "Saved result to %s" % output
def main():
try:
url = sys.argv[1]
input_img = sys.argv[2]
output_img = sys.argv[3]
except:
print "Usage: python test.py <api-server-address> <input-image> <output-image>"
return
post(url, input_img, output_img)
if __name__ == '__main__':
main()