Plwrftapi / app.py
09u2h4n's picture
app.py test1
499e1bc
raw
history blame contribute delete
200 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")}