├── .gitignore ├── LICENSE ├── README.md ├── edgar ├── __init__.py ├── __version__.py ├── data │ ├── symbols.csv │ └── symbols.py ├── document.py ├── document_text.py ├── dtd.py ├── edgar.py ├── filing.py ├── financials.py ├── requests_wrapper.py ├── sgml.py └── stock.py ├── setup.py └── tests ├── __init__.py ├── test_edgar.py ├── test_filing.py ├── test_sgml.py └── test_stock.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhadab/sec-edgar-financials/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhadab/sec-edgar-financials/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhadab/sec-edgar-financials/HEAD/README.md -------------------------------------------------------------------------------- /edgar/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /edgar/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhadab/sec-edgar-financials/HEAD/edgar/__version__.py -------------------------------------------------------------------------------- /edgar/data/symbols.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhadab/sec-edgar-financials/HEAD/edgar/data/symbols.csv -------------------------------------------------------------------------------- /edgar/data/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhadab/sec-edgar-financials/HEAD/edgar/data/symbols.py -------------------------------------------------------------------------------- /edgar/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhadab/sec-edgar-financials/HEAD/edgar/document.py -------------------------------------------------------------------------------- /edgar/document_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhadab/sec-edgar-financials/HEAD/edgar/document_text.py -------------------------------------------------------------------------------- /edgar/dtd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhadab/sec-edgar-financials/HEAD/edgar/dtd.py -------------------------------------------------------------------------------- /edgar/edgar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhadab/sec-edgar-financials/HEAD/edgar/edgar.py -------------------------------------------------------------------------------- /edgar/filing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhadab/sec-edgar-financials/HEAD/edgar/filing.py -------------------------------------------------------------------------------- /edgar/financials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhadab/sec-edgar-financials/HEAD/edgar/financials.py -------------------------------------------------------------------------------- /edgar/requests_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhadab/sec-edgar-financials/HEAD/edgar/requests_wrapper.py -------------------------------------------------------------------------------- /edgar/sgml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhadab/sec-edgar-financials/HEAD/edgar/sgml.py -------------------------------------------------------------------------------- /edgar/stock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhadab/sec-edgar-financials/HEAD/edgar/stock.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhadab/sec-edgar-financials/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_edgar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhadab/sec-edgar-financials/HEAD/tests/test_edgar.py -------------------------------------------------------------------------------- /tests/test_filing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhadab/sec-edgar-financials/HEAD/tests/test_filing.py -------------------------------------------------------------------------------- /tests/test_sgml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhadab/sec-edgar-financials/HEAD/tests/test_sgml.py -------------------------------------------------------------------------------- /tests/test_stock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhadab/sec-edgar-financials/HEAD/tests/test_stock.py --------------------------------------------------------------------------------