selenium-scraper / main.py
apexherbert200's picture
First commit
f2c46e7
raw
history blame contribute delete
159 Bytes
from fastapi import FastAPI, Query
from clickloom_scrape import scraper
app = FastAPI()
@app.get("/scrape")
def scrape(link: str):
return scraper(link)