Metadata-Version: 2.1
Name: autobr
Version: 0.0.4a4
Summary: A bot to control web browser actions
Home-page: https://github.com/dhchenx/autobr
Author: Donghua Chen
Author-email: douglaschan@126.com
License: MIT
Project-URL: Bug Reports, https://github.com/dhchenx/autobr/issues
Project-URL: Source, https://github.com/dhchenx/autobr
Keywords: auto bot,web browser,html pages,crawler
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.6, <4
Description-Content-Type: text/markdown
Provides-Extra: dev
Provides-Extra: test
License-File: LICENSE

# AutoBr: Auto Browser

A bot to control web browser actions

## Installation
```pip
pip install autobr
```

Download ChromeDriver [Chromium](https://chromedriver.chromium.org/downloads) or [GoogleAPIs](https://chromedriver.storage.googleapis.com/index.html?path=107.0.5304.62/) according to your computer's Chrome version.

### Example

```python
from autobr.bot import *

if __name__ == "__main__":
    bot = Bot(chromedriver_path='browsers/chromedriver.exe')
    bot.start()
    bot.open("https://pypi.org/")
    html=bot.get_html_str()
    print(html)
    bot.close()

```

## License
The `AutoBr` project is provided by [Donghua Chen](https://github.com/dhchenx). 

