If python pip urllib.request is timing out, it might be the server, not you.
Try this to debug:
```python
import socket
socket.setdefaulttimeout(30)
```
And yeah, SSL errors are a nightmare. `certifi` is your friend.
Try this to debug:
```python
import socket
socket.setdefaulttimeout(30)
```
And yeah, SSL errors are a nightmare. `certifi` is your friend.
