-
Notifications
You must be signed in to change notification settings - Fork 172
Open
Description
Sorry to ask a rather stupid question, but at the moment, after looking at the steampy library and reading the documentation, I have found 2 ways to connect a proxy.:
1:
steam_client = SteamClient('MY_API_KEY')
proxies = {
"http": "http://login:password@host:port",
"https": "http://login:password@host:port"
}
steam_client.set_proxies(proxies)
2:
from steampy.client import SteamClient
proxies = {
"http": "http://login:password@host:port",
"https": "http://login:password@host:port"
}
steam_client = SteamClient('MY_API_KEY', proxies=proxies)
Can you explain to me how these methods differ, and which one do I need to use so that a proxy is used throughout the entire connection, starting from the login and ending with all the library functions? Thanks!
Metadata
Metadata
Assignees
Labels
No labels