Metadata-Version: 2.4
Name: nomad-playwright
Version: 0.1.0
Summary: Drop-in Playwright replacement — uses Nomad engine. 700× cheaper, same API.
License: AGPL-3.0
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: nomad-sdk>=0.2.0
Dynamic: requires-python

# Nomad Playwright

Drop-in replacement for Playwright — uses the Nomad headless browser engine.  
700× cheaper, same API.

```python
# Replace this:
# from playwright.sync_api import sync_playwright

# With this:
from nomad_playwright import sync_playwright

with sync_playwright() as p:
    browser = p.chromium.launch()
    page = browser.new_page()
    page.goto("https://example.com")
    print(page.content())
```
