https://github.com/rancorm/playmeter
Script to collect statistics via Playwright
https://github.com/rancorm/playmeter
http http-requests playwright python
Last synced: 2 months ago
JSON representation
Script to collect statistics via Playwright
- Host: GitHub
- URL: https://github.com/rancorm/playmeter
- Owner: rancorm
- Created: 2025-08-22T17:25:02.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-08-23T16:06:53.000Z (10 months ago)
- Last Synced: 2025-08-24T06:07:43.817Z (10 months ago)
- Topics: http, http-requests, playwright, python
- Language: Python
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Playmeter
Python script to collect request & response statistics via Playwright.
```
Requests for https://cormier.co
Methods:
GET 9
POST 2
Status codes:
200 10
204 1
```
# Setup
Install project dependencies.
```
python -m venv .venv
. .venv/bin/activate
uv sync
```
Install Playwright WebKit headless browser.
```
playwright install webkit
```
Run script.
```
python playmeter.py https://cormier.co
```
# Quick Run
```
uv run python playmeter.py https://cormier.co
```