a faster python http library
get started »
report a bug
·
request a feature
table of contents
there are so many great and fast http clients for python, but i feel that they could probably be faster. i'm trying to make a better http client for python, written in rust for extra speed and safety.
- ⚡ rust
- 🐍 python
- ✨ pyo3
- 🕸️ reqwest
not much setup is required, since the compiled rust is in the wheel.
$ pip install --user reqwest-py
>>> from reqwest import get
>>> get("https://example.com")
# or...
>>> from reqwest import Client
>>> Client().get("https://example.com")
- get requests
- client
- crud support
- headers
- headers
- user agent
- caching that obeys cache-control headers
see the open issues for a full list of proposed features (and known issues).
contributions are what make the open source community such an amazing place to learn, inspire, and create. any contributions you make are greatly appreciated.
if you have a suggestion that would make this better, please fork the repo and create a pull request. you can also simply open an issue with the tag "enhancement". don't forget to give the project a star! thanks again!
- fork the project
- create your feature branch (
git checkout -b feature/amazingfeature
) - commit your changes (
git commit -m 'add some amazingfeature'
) - push to the branch (
git push origin feature/amazingfeature
) - open a pull request
distributed under the mit license. see license.txt
for more information.
thrzl. - thrizzle@skiff.com
project link: https://github.com/terabyte3/reqwest.py
use this space to list resources you find helpful and would like to give credit to. i've included a few of my favorites to kick things off!