From 040a96d00eaec0990541debc0310a6ff56d082d0 Mon Sep 17 00:00:00 2001 From: Damien George Date: Thu, 5 Oct 2023 14:04:45 +1100 Subject: [PATCH] docs,tools: Change remaining "urequests" references to "requests". Signed-off-by: Damien George --- docs/esp32/quickref.rst | 2 +- tools/manifestfile.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/esp32/quickref.rst b/docs/esp32/quickref.rst index 5be737fa2d..e03a5ffbc9 100644 --- a/docs/esp32/quickref.rst +++ b/docs/esp32/quickref.rst @@ -101,7 +101,7 @@ A useful function for connecting to your local WiFi network is:: print('network config:', wlan.ifconfig()) Once the network is established the :mod:`socket ` module can be used -to create and use TCP/UDP sockets as usual, and the ``urequests`` module for +to create and use TCP/UDP sockets as usual, and the ``requests`` module for convenient HTTP requests. After a call to ``wlan.connect()``, the device will by default retry to connect diff --git a/tools/manifestfile.py b/tools/manifestfile.py index 3b613d9e1d..295170c34c 100644 --- a/tools/manifestfile.py +++ b/tools/manifestfile.py @@ -106,7 +106,7 @@ class ManifestPackageMetadata: self.stdlib = False # Allows a python-ecosys package to be annotated with the - # corresponding name in PyPI. e.g. micropython-lib/urequests is based + # corresponding name in PyPI. e.g. micropython-lib/requests is based # on pypi/requests. self.pypi = None # For a micropython package, this is the name that we will publish it