efinance icon indicating copy to clipboard operation
efinance copied to clipboard

incompatible with TypeError for dict_values as integer

Open wadelau opened this issue 1 year ago • 0 comments

There is an issue caused by lower versions of Python (<=3.6.10) and/or Pandas. efinance-error-202208

Codes can still be run as expected if some of these functions removed as illustrated in the attached file.

s = pd.Series(json_response['Datas']).rename(index=columns)[columns.values()] --> s = pd.Series(json_response['Datas']).rename(index=columns)

is it necessary to do some compatible remedies for old versions?

wadelau avatar Aug 27 '22 02:08 wadelau