Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/akornatskyy/wheezy.http
A lightweight http request-response library
https://github.com/akornatskyy/wheezy.http
http python wheezy
Last synced: about 1 month ago
JSON representation
A lightweight http request-response library
- Host: GitHub
- URL: https://github.com/akornatskyy/wheezy.http
- Owner: akornatskyy
- License: mit
- Created: 2020-06-25T07:38:58.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-11-10T11:20:25.000Z (about 2 months ago)
- Last Synced: 2024-11-10T11:24:19.799Z (about 2 months ago)
- Topics: http, python, wheezy
- Language: Python
- Homepage: https://wheezyhttp.readthedocs.io/en/latest/
- Size: 1.21 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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.9+. 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).