Skip to content

Commit

Permalink
docs,tools: Change remaining "urequests" references to "requests".
Browse files Browse the repository at this point in the history
Signed-off-by: Damien George <[email protected]>
  • Loading branch information
dpgeorge committed Oct 5, 2023
1 parent 342ebcb commit 040a96d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/esp32/quickref.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <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
Expand Down
2 changes: 1 addition & 1 deletion tools/manifestfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def __init__(self, is_require=False):
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
Expand Down

0 comments on commit 040a96d

Please sign in to comment.