Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
hashir672
/
Python-red-gen-space
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
c1e7e8a
Python-red-gen-space
/
main.py
hashir672
Update main.py
c1e7e8a
over 1 year ago
raw
Copy download link
history
blame
Safe
181 Bytes
from
flask
import
Flask
import
requests
as
r
x=r.get(
"https://netflix.com"
)
print
(x.status_code)
app = Flask(__name__)
@app.route(
'/'
)
def
hello_world
():
return
'Hello World'