Hi
I'm trying to fix some ssl certificate bugs by setting verify=false when making a timeseries call for the eikon api in python. Im doing like this:
import eikon as ek
ek.set_app_key('............')
X=ek.get_timeseries(["RICS code"], ['close'], start_date="2015-01-01", end_date="2024-02-04", verify=False)
In the end of the call though, its not possible to put verify=false. It gives me the error "TypeError: get_timeseries() got an unexpected keyword argument 'verify'".
Could anyone help me how to set verify=false in the correct way for eikon get_timeseries?
thx