Metadata-Version: 2.0
Name: hh
Version: 2.0.0
Summary: The enumeration of HTTP headers.
Home-page: https://github.com/gtors/hh
Author: Andrey Torsunov
Author-email: andrey.torsunov@gmail.com
License: MIT
Platform: any
Classifier: Topic :: Internet
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Environment :: Web Environment
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3

# H<sub>ttp</sub> H<sub>eaders</sub>
The enumeration which contains all headers constants from RFC1945, RFC2518, RFC2616.

# Usage
```python
import requests 
import hh

requests.get('https://yandex.com', headers={hh.CONTENT_TYPE: "text/html"})
```


