Metadata-Version: 2.1
Name: requests-html2
Version: 1.0.4
Summary: HTML Parsing for Humans
Author-Email: Bevis <alonefire@foxmail.com>
License: MIT
Project-URL: Homepage, https://github.com/AloneFire/requests_html2
Project-URL: Bug tracker, https://github.com/AloneFire/requests_html2
Requires-Python: >=3.7
Requires-Dist: requests>=2.27.1
Requires-Dist: pyquery>=1.4.3
Requires-Dist: fake-useragent>=1.1.3
Requires-Dist: w3lib>=2.0.1
Requires-Dist: parse>=1.19.0
Requires-Dist: beautifulsoup4>=4.12.2
Requires-Dist: pyppeteer>=1.0.2
Description-Content-Type: text/markdown

# requests_html2
> HTML Parsing for Humans
> 项目衍生自[requests-html](https://github.com/kennethreitz/requests-html)
> 用法请参考`example`以及[requests-html](https://github.com/kennethreitz/requests-html)文档

相比于[requests-html](https://github.com/kennethreitz/requests-html)有如下改进：
- 浏览器渲染相关操作更灵活
- 增加全局cookie、proxy设置
- 元素操作优化，对于元素查找`find()`、`xpath()`的返回结果，参照linq增加筛选`select()`、`where()`
## Install
```
pip install requests-html2
```
## Quick Start

```python
from requests_html2 import HTMLSession
session = HTMLSession()
r = session.get('https://python.org/')
```