szk1ck's picture
initialize
d785ac4
raw
history blame
168 Bytes
import requests
url = 'http://127.0.0.1:8000/'
files = {'image': open('./data/catch_copy_.png', 'rb')}
response = requests.post(url, files=files)
print(response.text)