From b6b14da6d69f530589ee06e74949cb6986d98aa9 Mon Sep 17 00:00:00 2001 From: Dwight Gunning Date: Tue, 12 Nov 2024 18:09:10 -0500 Subject: [PATCH] Add details on 10-K --- README.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/README.md b/README.md index 5509df1..7f8a22e 100644 --- a/README.md +++ b/README.md @@ -403,6 +403,32 @@ c.latest_tenk ``` ![10K Data Object](docs/images/orcl-tenk.png) +### Getting 10-K Items + +You can get the text of individual sections of the 10-K filing using tge bracket `[]` operator. + +```python +tenk['Item 1'] +``` + +There are also a few convenience methods to get the most common sections. + +```python +# Get Item 1 - Business +tenk.business + +# Get Item 1A - Risk Factors +tenk.risk_factors + +# Get Item 7 - Management's Discussion and Analysis +tenk.management_discussion + +# Get Item 10 - Directors, Officers and Corporate Governance +tenk.directors_officers_and_governance +``` + + + ## Downloading Edgar Data The library is designed to make real time calls to EDGAR to get the latest data. However, you may want to download data for offline use or to build a dataset.