diff options
author | Damien George <damien@micropython.org> | 2023-10-05 14:04:45 +1100 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2023-10-05 14:04:45 +1100 |
commit | 040a96d00eaec0990541debc0310a6ff56d082d0 (patch) | |
tree | f952d5474d2646860264eb158a16c5a3ef300c54 /docs/esp32 | |
parent | 342ebcb41d14197b1a2424bac8ff131ddf8e841d (diff) | |
download | micropython-040a96d00eaec0990541debc0310a6ff56d082d0.tar.gz micropython-040a96d00eaec0990541debc0310a6ff56d082d0.zip |
docs,tools: Change remaining "urequests" references to "requests".
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'docs/esp32')
-rw-r--r-- | docs/esp32/quickref.rst | 2 |
1 files changed, 1 insertions, 1 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 <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 |