thrzl / reqwest.py

⚡ faster python requests

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool


pinned project logo

a faster python http library
get started »

report a bug · request a feature

table of contents
  1. about the project
  2. getting started
  3. usage
  4. roadmap
  5. contributing
  6. license
  7. contact
  8. acknowledgments

about the project

product name screen shot

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.

built with

  • ⚡ rust
  • 🐍 python
  • ✨ pyo3
  • 🕸️ reqwest

getting started

not much setup is required, since the compiled rust is in the wheel.

$ pip install --user reqwest-py

usage

>>> from reqwest import get
>>> get("https://example.com")
# or...
>>> from reqwest import Client
>>> Client().get("https://example.com")

roadmap

  • 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).

contributing

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!

  1. fork the project
  2. create your feature branch (git checkout -b feature/amazingfeature)
  3. commit your changes (git commit -m 'add some amazingfeature')
  4. push to the branch (git push origin feature/amazingfeature)
  5. open a pull request

license

distributed under the mit license. see license.txt for more information.

contact

thrzl. - thrizzle@skiff.com

project link: https://github.com/terabyte3/reqwest.py

acknowledgments

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!

About

⚡ faster python requests


Languages

Language:Rust 81.2%Language:Python 18.8%