Metadata-Version: 2.1
Name: webscrapper
Version: 0.0.5
Summary: Simple client for Web scrapper API https://scrapper.scurra.space/
Home-page: https://github.com/pi11/webscrapper-client-python
Author: webii
Author-email: webii@pm.me
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Web Scrapper API client for python

This is python client library for https://scrapper.scurra.space/

This module provide 2 functions with same functionality.
get_page and get_page_async for async python.


## Installation

```
pip install webscrapper
```

## Example usage:

```python
from webscrapper.client import get_page

result = get_page(url, api_key="__YOUR_API_KEY__", use_selenium=True)
print(result['html'])
```
