Spaces:
Sleeping
Sleeping
File size: 159 Bytes
7742d11 |
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)
|