Plwrftapi / app.py
09u2h4n's picture
test4
411963a
raw
history blame
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", ".")}