Hi,
I successfully get the the test Spot API Key and Secret. According to the guidance, the next step should be to change the Spot API URL to Spot Test Network URL. But in Python ,I don’t know where to change this parameter.
I found that there are URL parameters in the init.py file, but the modification here is useless. What should I do?
def __init__(self, key=None, secret=None, **kwargs):
if "base_url" not in kwargs:
kwargs["base_url"] = "https://api.binance.com"
# kwargs["base_url"] = "https://testnet.binance.vision"
super().__init__(key, secret, **kwargs)
Thanks!