Commit
·
a6f3e76
1
Parent(s):
36e0003
Added test1
Browse files
test1.py
CHANGED
@@ -1,5 +1,10 @@
|
|
1 |
-
from fastapi import
|
2 |
-
|
|
|
|
|
|
|
|
|
|
|
3 |
|
4 |
|
5 |
app = FastAPI(title="LeadGen Scraper", description="A Lead generation scraper")
|
|
|
1 |
+
from fastapi import FastAPI, HTTPException, Query
|
2 |
+
from pydantic import BaseModel
|
3 |
+
from playwright.async_api import async_playwright
|
4 |
+
import asyncio
|
5 |
+
import base64
|
6 |
+
import logging
|
7 |
+
from typing import List, Optional
|
8 |
|
9 |
|
10 |
app = FastAPI(title="LeadGen Scraper", description="A Lead generation scraper")
|