Spaces:
No application file
No application file
File size: 159 Bytes
71f9aed | 1 2 3 4 5 6 7 8 9 10 | from fastapi import FastAPI, Query
from clickloom_scrape import scraper
app = FastAPI()
@app.get("/scrape")
def scrape(link: str):
return scraper(link)
|