'How do I fix the ImportError?
So here is the import section:
from urllib3.packages import six
from .packages.six import HTTPConnection as _HTTPConnection
from .packages.six import HTTPException
The Import Error raised at Line 2 is: ImportError: cannot import name 'HTTPConnection' from 'urllib3.packages.six'
And also there is a prompt which says: "HTTPException" is not accessedPylance
Solution 1:[1]
With urllib3 version 1.26.9 the correct imports are:
from urllib3.packages import six
from urllib3.packages.six.moves.http_client import HTTPConnection as _HTTPConnection
from urllib3.packages.six.moves.http_client import HTTPException
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Nin17 |

