Metadata-Version: 2.1
Name: requests-h2
Version: 0.1.1
Summary: Requests that supports HTTP/1.1 and HTTP/2
Home-page: https://github.com/ZLotusRain/requests-h2
Author: LotusRain
Author-email: 1161525789@qq.com
License: Apache License
Platform: all
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests
Requires-Dist: httpcore
Requires-Dist: h2
Requires-Dist: urllib3<2,>1.25.11

# requests-h2
[Requests](https://github.com/psf/requests) that supports HTTP/1.1 and HTTP/2.

It may help people who want requests-style coding to send HTTP2 requests and don't want to upgrade their OpenSSL version, and
it allows you to send HTTP/1.1 and HTTP/2 requests extremely easily.


requests-h2是一个支持http2的http请求库，本项目基于requests与httpcore，除增加了额外参数外，与requests使用方法一致。

You use it just like requests:
```python
>>> import requests-h2 as requests
>>> r = requests.get('https://www.google.com', http2=True)
>>> r.status_code
200
>>> r.version
'HTTP/2'
```

## Installation
You can install requests-h2 either via the Python Package Index (PyPI) or from source.

To install using `pip`:

```pip install requests-h2```


## Requirements
Python 3.7+


## Dependencies
- requests
- httpcore
- urllib3<2


## Motivation
We are used to using `requests` to send HTTP requests, but it doesn't support HTTP2 util 2023 and maybe util now.
Although there are some libraries which have already supported HTTP2,but it's hard for me to change dependencies,so i created 
this project
to meet my demands.
And the `urllib3` which `requests` relies on is doing their effort to support HTTP2,but they need `OpenSSL` > 1.11,and anyone
who don't want to upgrade it still can use this library.
