Files
TexTeller/src/client_demo.py
2024-06-17 21:23:55 +08:00

13 lines
340 B
Python

import requests
rec_server_url = "http://127.0.0.1:8000/frec"
det_server_url = "http://127.0.0.1:8000/fdet"
img_path = "/your/image/path/"
with open(img_path, 'rb') as img:
files = {'img': img}
response = requests.post(det_server_url, files=files)
# response = requests.post(rec_server_url, files=files)
print(response.text)