apexherbert200's picture
Initial commit
824df4a
from fastapi import FastAPI, Query
from clickloom_scrape import scraper
app = FastAPI()
@app.get("/scrape")
def scrape(link: str):
return scraper(link)