We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
from iexfinance.stocks import Stock
stocks=Stock(['NEM','FCX'],token='my_token',output_format='pandas') fins_data=stocks.get_financials(period='annual') print(type(fins_data))
<class 'dict'>
the output has 2x 1 row and 70 columns . causing issues converting to a DF and merging with other DF outputs.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
from iexfinance.stocks import Stock
stocks=Stock(['NEM','FCX'],token='my_token',output_format='pandas')
fins_data=stocks.get_financials(period='annual')
print(type(fins_data))
the output has 2x 1 row and 70 columns . causing issues converting to a DF and merging with other DF outputs.
The text was updated successfully, but these errors were encountered: