Spaces:
Runtime error
Runtime error
File size: 196 Bytes
67c3421 |
1 2 3 4 5 6 7 |
import requests
url = "https://raw.githubusercontent.com/raflyryhnsyh/Gemini-OCR-KTP/main/image.jpg"
response = requests.get(url)
with open("image.jpg", "wb") as f:
f.write(response.content) |