Skip to content

Commit 040a96d

Browse files
committed
docs,tools: Change remaining "urequests" references to "requests".
Signed-off-by: Damien George <damien@micropython.org>
1 parent 342ebcb commit 040a96d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/esp32/quickref.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ A useful function for connecting to your local WiFi network is::
101101
print('network config:', wlan.ifconfig())
102102

103103
Once the network is established the :mod:`socket <socket>` module can be used
104-
to create and use TCP/UDP sockets as usual, and the ``urequests`` module for
104+
to create and use TCP/UDP sockets as usual, and the ``requests`` module for
105105
convenient HTTP requests.
106106

107107
After a call to ``wlan.connect()``, the device will by default retry to connect

tools/manifestfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def __init__(self, is_require=False):
106106
self.stdlib = False
107107

108108
# Allows a python-ecosys package to be annotated with the
109-
# corresponding name in PyPI. e.g. micropython-lib/urequests is based
109+
# corresponding name in PyPI. e.g. micropython-lib/requests is based
110110
# on pypi/requests.
111111
self.pypi = None
112112
# For a micropython package, this is the name that we will publish it

0 commit comments

Comments
 (0)