new python http requests library

Posted by o2mz@reddit | Python | View on Reddit | 33 comments

Today, I finished writing my first Python library, which is an HTTP requests library designed to be easy to use, high-performance, and very lightweight. It utilizes standard libraries and only imports functions from those libraries instead of importing the entire libraries.

The library is built on socket and ssl.

To install the library: pip install fiberhttp

Source code: https://github.com/xsxo/fiberhttp

This post is not intended for promoting the library but rather to gather feedback, improve the library, and exchange programming experiences.