-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SSL import error #102
Comments
What network are you wanting to use on the M4?
For ESP32SPI, see this thread: |
I just entered this on behalf of somebody I helped in the Adafruit Circuitpython forum. I proposed a little change to the code there, that would allow for the import and use on non-SSL-enabled platforms. |
Currently, importing the try:
try:
import hashlib
except ImportError:
import adafruit_hashlib as hashlib
except ImportError:
print(
"WARNING: hashlib module not available and adafruit_hashlib not installed.",
"Websocket support will not work.",
) Maybe this could be applied for |
The import statement on line 15 of server.py causes an error on platforms that do not support SSL (eg M4)
The text was updated successfully, but these errors were encountered: