lol i spent HOURS on this. My dumb mistake? Forgot to escape special chars in the proxy password.
If your creds have `@` or `#`, use `urllib.parse.quote()` to encode ‘em.
Also, if you’re behind a corp firewall, sometimes the proxy just… won’t. Try `verify=False` in requests (but only for testing, obv).
If your creds have `@` or `#`, use `urllib.parse.quote()` to encode ‘em.
Also, if you’re behind a corp firewall, sometimes the proxy just… won’t. Try `verify=False` in requests (but only for testing, obv).
