We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I am trying to initialize a request session on my esp32 board. However, it failed, with error message:
File "adafruit_connection_manager.py" line395, in get_connection manager TypeError: unsupported type for __hash__: socketpool
The version of circuitPython is 8.2.7, my board is ESP32-S2 Reverse TFT Feather. The code I used is attached.
# settings.toml imports aio_username = os.getenv('AIO_USERNAME') aio_key = os.getenv('AIO_KEY') # connect to wifi wifi.radio.connect(os.getenv('CIRCUITPY_WIFI_SSID'), os.getenv('CIRCUITPY_WIFI_PASSWORD')) pool = socketpool.SocketPool(wifi.radio) requests = adafruit_requests.Session(pool, ssl.create_default_context())
Any suggestions?
The text was updated successfully, but these errors were encountered:
I can check for backwards compatibility, have you tried using CircuitPython 9.x?
Sorry, something went wrong.
Switching to CircuitPython 9.X solved this issue for me.
No branches or pull requests
I am trying to initialize a request session on my esp32 board. However, it failed, with error message:
The version of circuitPython is 8.2.7, my board is ESP32-S2 Reverse TFT Feather. The code I used is attached.
Any suggestions?
The text was updated successfully, but these errors were encountered: