I'm trying to get data from binance client using python on VSCode .
from binance import Client
import config
key = config.API_KEY
secret = config.API_SECRET
client = Client(key, secret)
info = client.get_symbol_info("BTCUSDT")
I tryed the same code on google collab and it worked. but I always have the error
'Client' object has no attribute
when I run the code using VSCode .