micropython-lib/micropython/urequests
Jim Mussared 8513bfbe9d requests: Rename urequests to requests.
This module implements a subset of the Python requests module, and so
it should have the same name.

Added a backwards-compatibility wrapper to allow people to continue to use
`import urequests`. This lives in micropython/urequests.

Changed requests to be a package, so that we can implement extension
packages in the future for optional functionality.

Added a basic README.md to both.

This work was funded through GitHub Sponsors.

Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
2023-07-23 11:41:44 +10:00
..
README.md requests: Rename urequests to requests. 2023-07-23 11:41:44 +10:00
manifest.py requests: Rename urequests to requests. 2023-07-23 11:41:44 +10:00
urequests.py requests: Rename urequests to requests. 2023-07-23 11:41:44 +10:00

README.md

urequests compatibility

The MicroPython version of requests was previously called urequests and a lot of existing code depends on being able to still import the module by that name.

This package provides a wrapper to allow this. Prefer to install and use the requests package instead.