url_sample.py 316 B

123456789101112
  1. import requests
  2. remote_img_url = 'https://ai.bdstatic.com/file/5419067D0B374C12A8CFB5C74684CC06'
  3. data = {
  4. 'img_url': remote_img_url
  5. }
  6. api_url = 'http://localhost:5000/api/ocr_dec'
  7. # or
  8. # api_url = 'http://0.0.0.0:5000/api/ocr_dec'
  9. response = requests.post(api_url, data=data)
  10. json = response.json()
  11. print(json)