You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
---------------------------------------------------------------------------OSErrorTraceback (mostrecentcalllast)
File [/opt/homebrew/lib/python3.11/site-packages/urllib3/connectionpool.py:703](https://file+.vscode-resource.vscode-cdn.net/opt/homebrew/lib/python3.11/site-packages/urllib3/connectionpool.py:703), inHTTPConnectionPool.urlopen(self, method, url, body, headers, retries, redirect, assert_same_host, timeout, pool_timeout, release_conn, chunked, body_pos, **response_kw)
702# Make the request on the httplib connection object.-->703httplib_response=self._make_request(
704conn,
705method,
706url,
707timeout=timeout_obj,
708body=body,
709headers=headers,
710chunked=chunked,
711 )
713# If we're going to release the connection in ``finally:``, then714# the response doesn't need to know about the connection. Otherwise715# it will also try to release it and we'll have a double-release716# mess.File [/opt/homebrew/lib/python3.11/site-packages/urllib3/connectionpool.py:386](https://file+.vscode-resource.vscode-cdn.net/opt/homebrew/lib/python3.11/site-packages/urllib3/connectionpool.py:386), inHTTPConnectionPool._make_request(self, conn, method, url, timeout, chunked, **httplib_request_kw)
385try:
-->386self._validate_conn(conn)
387except (SocketTimeout, BaseSSLError) ase:
388# Py2 raises this as a BaseSSLError, Py3 raises it as socket timeout.File [/opt/homebrew/lib/python3.11/site-packages/urllib3/connectionpool.py:1042](https://file+.vscode-resource.vscode-cdn.net/opt/homebrew/lib/python3.11/site-packages/urllib3/connectionpool.py:1042), inHTTPSConnectionPool._validate_conn(self, conn)
...
549exceptMaxRetryErrorase:
550ifisinstance(e.reason, ConnectTimeoutError):
551# TODO: Remove this in 3.0.0: see #2811ConnectionError: ('Connection aborted.', OSError(22, 'Invalid argument'))
The text was updated successfully, but these errors were encountered:
using Python 3.11.2 in Visual Studio Code ( Mac M1 )
It show me error after running this code below
The text was updated successfully, but these errors were encountered: