├── .gitignore ├── CHANGES.txt ├── LICENSE.txt ├── MANIFEST.txt ├── README.md ├── examples └── warren_buffet.py ├── financial_fundamentals ├── __init__.py ├── accounting_metrics.py ├── edgar.py ├── exceptions.py ├── indicies.py ├── sec_filing.py └── xbrl.py ├── setup.py └── tests ├── __init__.py ├── assets ├── __init__.py ├── aapl-20121229.xml ├── abbv_search_results.html └── goog-20120630.xml ├── test_accounting_metrics.py ├── test_edgar.py ├── test_sec_filing.py └── test_xbrl.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewkittredge/financial_fundamentals/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES.txt: -------------------------------------------------------------------------------- 1 | v0.0.1, 2013-9-4 -- Initial release. 2 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewkittredge/financial_fundamentals/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewkittredge/financial_fundamentals/HEAD/MANIFEST.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewkittredge/financial_fundamentals/HEAD/README.md -------------------------------------------------------------------------------- /examples/warren_buffet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewkittredge/financial_fundamentals/HEAD/examples/warren_buffet.py -------------------------------------------------------------------------------- /financial_fundamentals/__init__.py: -------------------------------------------------------------------------------- 1 | ''' 2 | Created on Sep 9, 2013 3 | 4 | @author: akittredge 5 | ''' 6 | -------------------------------------------------------------------------------- /financial_fundamentals/accounting_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewkittredge/financial_fundamentals/HEAD/financial_fundamentals/accounting_metrics.py -------------------------------------------------------------------------------- /financial_fundamentals/edgar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewkittredge/financial_fundamentals/HEAD/financial_fundamentals/edgar.py -------------------------------------------------------------------------------- /financial_fundamentals/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewkittredge/financial_fundamentals/HEAD/financial_fundamentals/exceptions.py -------------------------------------------------------------------------------- /financial_fundamentals/indicies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewkittredge/financial_fundamentals/HEAD/financial_fundamentals/indicies.py -------------------------------------------------------------------------------- /financial_fundamentals/sec_filing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewkittredge/financial_fundamentals/HEAD/financial_fundamentals/sec_filing.py -------------------------------------------------------------------------------- /financial_fundamentals/xbrl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewkittredge/financial_fundamentals/HEAD/financial_fundamentals/xbrl.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewkittredge/financial_fundamentals/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewkittredge/financial_fundamentals/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/assets/__init__.py: -------------------------------------------------------------------------------- 1 | ''' 2 | Created on Dec 28, 2013 3 | 4 | @author: akittredge 5 | ''' 6 | -------------------------------------------------------------------------------- /tests/assets/aapl-20121229.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewkittredge/financial_fundamentals/HEAD/tests/assets/aapl-20121229.xml -------------------------------------------------------------------------------- /tests/assets/abbv_search_results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewkittredge/financial_fundamentals/HEAD/tests/assets/abbv_search_results.html -------------------------------------------------------------------------------- /tests/assets/goog-20120630.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewkittredge/financial_fundamentals/HEAD/tests/assets/goog-20120630.xml -------------------------------------------------------------------------------- /tests/test_accounting_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewkittredge/financial_fundamentals/HEAD/tests/test_accounting_metrics.py -------------------------------------------------------------------------------- /tests/test_edgar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewkittredge/financial_fundamentals/HEAD/tests/test_edgar.py -------------------------------------------------------------------------------- /tests/test_sec_filing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewkittredge/financial_fundamentals/HEAD/tests/test_sec_filing.py -------------------------------------------------------------------------------- /tests/test_xbrl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewkittredge/financial_fundamentals/HEAD/tests/test_xbrl.py --------------------------------------------------------------------------------