Spaces:
Sleeping
Sleeping
File size: 319 Bytes
a3fc548 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import requests
url = "http://localhost:8000/upload/" # Flask uygulamasının adresi ve portu
# Gönderilecek dosyanın yolu
dosya_yolu = "test/test1.1.png"
# Dosyayı yükleme isteği oluştur
dosya = {"image": open(dosya_yolu, "rb")}
cevap = requests.post(url, files=dosya)
# Cevabı yazdır
print(cevap.json())
|