Created
June 12, 2022 13:31
-
-
Save janlukasschroeder/dc987d0080cebbc98da4be205a951dd7 to your computer and use it in GitHub Desktop.
Extract section 1.01 "Entry into Material Definitive Agreement" from 8-K filings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from sec_api import ExtractorApi | |
extractorApi = ExtractorApi("YOUR_API_KEY") | |
filing_url = "https://www.sec.gov/Archives/edgar/data/66600/000149315222016468/form8-k.htm" | |
# extract section 1.01 "Entry into Material Definitive Agreement" as cleaned text | |
section_text = extractorApi.get_section(filing_url, "1-1", "text") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment