Files
TexTeller/src/client_demo.py
2024-03-25 16:35:34 +08:00

11 lines
215 B
Python

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