CoolFace
Apppublic

KillerKing93/Transformers-TextEngine-OpenAPI

sourceHugging Faceupdated 10mo agoView on Hugging Face
0likes
download_image.py7 linesDownload Raw Back to root
1import requests2 3url = "https://raw.githubusercontent.com/raflyryhnsyh/Gemini-OCR-KTP/main/image.jpg"4response = requests.get(url)5 6with open("image.jpg", "wb") as f:7    f.write(response.content)