andrewkittredge / financial_fundamentals

Find XBRL filings on the SEC's Edgar and extract accounting metrics.
http://andrewonfinance.blogspot.com/
Other
139 stars 52 forks source link

Out of the box AttributeError #6

Open erm3nda opened 7 years ago

erm3nda commented 7 years ago
eps = ff.accounting_metrics.earnings_per_share(required_data)

AttributeError: 'module' object has no attribute 'accounting_metrics'

Should i see that when i just launched it w/o touch code? I've loaded the modules from another point and it worked.... idk what is wrong with those paths.

import pandas as pd
from financial_fundamentals import accounting_metrics as am #this one

date_range = pd.date_range('2016-1-1', '2016-12-31')
required_data = pd.DataFrame(columns=['MSFT', 'GOOG', 'YHOO', 'IBM'], index=date_range)

eps = am.earnings_per_share(required_data)
print eps
andrewkittredge commented 7 years ago

Hey @erm3nda . I have abandoned this project. I am doing XBRL professionally and cannot work on this. Best of luck, you are welcome to fork it.