github-hf-sync / main.py
amirkiarafiei's picture
initial project setup with FastAPI, Dockerfile, and README updates
9d5a9f1
raw
history blame contribute delete
254 Bytes
import requests
if __name__ == '__main__':
# URL of the Hugging Face Space endpoint
url = "https://amirkiarafiei-github-hf-sync.hf.space/"
# Send a GET request and print the response
response = requests.get(url)
print(response.text)