We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6b60d9 commit d672c7aCopy full SHA for d672c7a
examples/requests_https_circuitpython.py
@@ -4,11 +4,12 @@
4
# adafruit_requests usage with a CircuitPython socket
5
# this has been tested with Adafruit Metro ESP32-S2 Express
6
7
-import socketpool
8
import ssl
9
-import adafruit_requests as requests
10
import wifi
11
-import secrets
+import socketpool
+
+import adafruit_requests as requests
12
13
14
# Get wifi details and more from a secrets.py file
15
try:
@@ -61,4 +62,4 @@
61
62
json_resp = response.json()
63
# Parse out the 'json' key from json_resp dict.
64
print("JSON Data received from server:", json_resp["json"])
-print("-" * 40)
65
+print("-" * 40)
0 commit comments