from fyers_api import fyersModel
import os
client_id = “ABCD**-100”
access_token = “YISOSPHAIEGSKSEU7jHH****”
fyers = fyersModel.FyersModel(client_id=client_id, token=access_token, log_path=os.getcwd())
response = fyers.get_profile()
print(response)
Geeting error - TypeError: FyersModel.init() got an unexpected keyword argument ‘client_id’
I have fyers-api installed Version: 1.0.9
And it was working till last night. Whats the issue here?