This project monitors cookies using Playwright and provides a web interface for management.
server/: FastAPI backend server.browser_manager/: Playwright browser automation logic.sites.json: Configuration files (e.g.,sites.json).user_data/: Persistent data for browser contexts.server/static/: Static assets for the frontend.
- Python 3.x
- Playwright
- FastAPI
- Uvicorn
See requirements.txt for specific versions.
- Clone the repository.
- Install dependencies:
pip install -r requirements.txt - Install Playwright browsers:
playwright install
python main.pyThis will start the FastAPI server (typically on http://127.0.0.1:8000) and the browser manager.