TypeError: FyersModel.__init__() got an unexpected keyword argument 'client_id'

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?

Please upgrade to latest package.

We are not supporting this version

Thanks it working now by using - from fyers_apiv3 import fyersModel

welcome