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
[proxy]
# set 'use' to True to enable proxy for all HTTP requests
use = False
# proxy must be a SOCKS5 proxy
# proxy must be in host:port format (do NOT add protocol prefix)
http = 127.0.0.1:9050
https = 127.0.0.1:9050
This is ideally meant to be used with Tor, but doesn't have to be. Just any SOCKS5 proxy that can support http and https as the socks5 proxy.
http.py was re-worked to read this configuration data and use these proxies for all web requests if use = True. If the http/https values are invalid, you will receive an Error and the HTTP request (and the module using it) will fail until you address the config error.
The text was updated successfully, but these errors were encountered:
Added new section to config file:
This is ideally meant to be used with Tor, but doesn't have to be. Just any SOCKS5 proxy that can support http and https as the socks5 proxy.
http.py was re-worked to read this configuration data and use these proxies for all web requests if
use = True
. If the http/https values are invalid, you will receive an Error and the HTTP request (and the module using it) will fail until you address the config error.The text was updated successfully, but these errors were encountered: