Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
09u2h4n
/
Plwrftapi
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
91127bc
Plwrftapi
/
app.py
09u2h4n
test4
411963a
8 months ago
raw
Copy download link
history
blame
Safe
205 Bytes
from
fastapi
import
FastAPI
from
take_ss
import
take_screenshot
import
os
app = FastAPI()
pwd = os.getcwd()
@app.get(
"/"
)
def
greet_json
():
return
{
"Sonuc"
: take_screenshot(
"https:google.com"
,
"."
)}