micropython-lib/micropython/bundles
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
..
bundle-networking requests: Rename urequests to requests. 2023-07-23 11:41:44 +10:00
README.md micropython/bundles: Add a bundle-networking meta-package. 2023-02-01 11:28:42 +11:00

README.md

These are "meta packages" designed to make it easy to provide defined bundles of related packages.

For example, all deployments of MicroPython with networking support (WiFi/Ethernet) should add require("bundle-networking") to their manifest.py to ensure that the the standard set of networking packages (including HTTP requests, WebREPL, NTP, package management) are included.