yuripeyamashita's picture
Update app.py
074798d verified
raw
history blame
376 Bytes
from flask import Flask
from time import sleep
import requests
app = Flask(__name__)
headers = {
'Authorization': os.environ.get("auth"),
},
@app.route("/")
def index():
url = 'https://yuripeyamashita-fetch2.hf.space/'
response = requests.get(url, headers=headers)
return response.json
if __name__ == "__main__":
app.run(host="0.0.0.0", port=7860)