Commit
·
f6ff664
1
Parent(s):
820622d
Building new logic
Browse files- requirements.txt +1 -0
- screenshot.py +1 -1
requirements.txt
CHANGED
|
@@ -2,3 +2,4 @@ fastapi
|
|
| 2 |
uvicorn[standard]
|
| 3 |
pydantic
|
| 4 |
playwright
|
|
|
|
|
|
| 2 |
uvicorn[standard]
|
| 3 |
pydantic
|
| 4 |
playwright
|
| 5 |
+
typing
|
screenshot.py
CHANGED
|
@@ -4,7 +4,7 @@ from playwright.async_api import async_playwright
|
|
| 4 |
import asyncio
|
| 5 |
import base64
|
| 6 |
import time
|
| 7 |
-
|
| 8 |
app = FastAPI()
|
| 9 |
|
| 10 |
|
|
|
|
| 4 |
import asyncio
|
| 5 |
import base64
|
| 6 |
import time
|
| 7 |
+
from typing import Optional
|
| 8 |
app = FastAPI()
|
| 9 |
|
| 10 |
|