install_playwright 0.1.0

Creator: bradpython12

Last updated:

Add to Cart

Description:

install playwright 0.1.0

install-playwright-python

Execute playwright install from Python.
from install_playwright import install

from playwright.sync_api import sync_playwright

with sync_playwright() as p:
install(p.chrome)
browser = p.chrome.launch()
# ...

import asyncio
from playwright.async_api import async_playwright

async def main():
async with async_playwright() as p:
install(p.chrome)
browser = await p.chrome.launch()
# ...

Install
pip install install-playwright

License
MIT

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.