Metadata-Version: 2.4
Name: wheezy.http
Version: 3.2.3
Summary: A lightweight http request-response library
Author-email: Andriy Kornatskyy <andriy.kornatskyy@live.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/akornatskyy/wheezy.http
Project-URL: Source, https://github.com/akornatskyy/wheezy.http
Project-URL: Issues, https://github.com/akornatskyy/wheezy.http/issues
Keywords: wsgi,http,request,response,cache,cachepolicy,cookie,functional,middleware,transforms
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Application
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Quality Assurance
Classifier: Topic :: Software Development :: Testing
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: wheezy.core>=3.2.3
Provides-Extra: cython
Requires-Dist: Cython>=3.0; extra == "cython"
Requires-Dist: setuptools>=61.0; extra == "cython"
Dynamic: license-file

# wheezy.http

[![tests](https://github.com/akornatskyy/wheezy.http/actions/workflows/tests.yml/badge.svg)](https://github.com/akornatskyy/wheezy.http/actions/workflows/tests.yml)
[![Coverage Status](https://coveralls.io/repos/github/akornatskyy/wheezy.http/badge.svg?branch=master)](https://coveralls.io/github/akornatskyy/wheezy.http?branch=master)
[![Documentation Status](https://readthedocs.org/projects/wheezyhttp/badge/?version=latest)](https://wheezyhttp.readthedocs.io/en/latest/?badge=latest)
[![pypi version](https://badge.fury.io/py/wheezy.http.svg)](https://badge.fury.io/py/wheezy.http)

[wheezy.http](https://pypi.org/project/wheezy.http/) is a
[python](http://www.python.org) package written in pure Python code. It
is a lightweight http library for things like request, response,
headers, cookies and many others. It a wrapper around the
[WSGI](http://www.python.org/dev/peps/pep-3333) request environment.

It is optimized for performance, well tested and documented.

Resources:

- [source code](https://github.com/akornatskyy/wheezy.http),
  [examples](https://github.com/akornatskyy/wheezy.http/tree/master/demos)
  and [issues](https://github.com/akornatskyy/wheezy.http/issues)
  tracker are available on
  [github](https://github.com/akornatskyy/wheezy.http)
- [documentation](https://wheezyhttp.readthedocs.io/en/latest/)

## Install

[wheezy.http](https://pypi.org/project/wheezy.http/) requires
[python](https://www.python.org) version 3.10+. It is independent of operating
system. You can install it from [pypi](https://pypi.org/project/wheezy.http/)
site:

```sh
pip install -U wheezy.http
```

If you run into any issue or have comments, go ahead and add on
[github](https://github.com/akornatskyy/wheezy.http).
