Resolved: No module named 'ussl' in MicroPython v1.23 or 1.24 preview #15229
-
I have been using the ussl module in RPi Pico script, with MicroPython v1.22. However, after starting to use 1.23 version, I get error message no module named 'ussl'. Non-working versions:
Works OK here:
How to get ussl working again? |
Beta Was this translation helpful? Give feedback.
Answered by
robert-hh
Jun 8, 2024
Replies: 2 comments 1 reply
-
Please see this announcement. |
Beta Was this translation helpful? Give feedback.
1 reply
-
Oh, that's it. Simply replacing the import ussl commands with import ssl helped and now the code is running successfully in 1.23. Thank you for quick answers! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Try
import ssl
.