Metadata-Version: 2.1
Name: selenium-async
Version: 0.1.0
Summary: Wrapper for Selenium to make it easy, with asyncio support!
Home-page: https://github.com/munro/python-selenium-async
License: MIT
Author: Ryan Munro
Author-email: 500774+munro@users.noreply.github.com
Requires-Python: >=3.9,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: selenium (>=4.1.3,<5.0.0)
Project-URL: Documentation, https://selenium-async.readthedocs.io/en/latest/
Project-URL: Repository, https://github.com/munro/python-selenium-async
Description-Content-Type: text/markdown

# selenium-async

Make Selenium easy to by managing a browser pool, and `asyncio` compatibility!

-   Source: [https://github.com/munro/python-selenium-async](https://github.com/munro/python-selenium-async)
-   Documentation: [https://selenium-async.readthedocs.io/en/latest/](https://selenium-async.readthedocs.io/en/latest/)

## install

```bash
poetry add selenium-async
```

## usage

```python
import selenium_async


def get_title(driver: selenium_async.WebDriver):
    driver.get("https://www.python.org/")
    return driver.title

print(await selenium_async.run_sync(get_title))

# prints: Welcome to Python.org
```

## license

MIT

