http://www.sec.gov/cgi-bin/browse-edgar?CIK=ibm&Find=Search&owner=exclude&action=getcompany&output=atom Then parse the atom to grab the CIK. (If you prefer HTML output just omit output=atom). There is also a full-text company name to CIK lookup here: ...
from edgar import * # Tell the SEC who you are set_identity("Michael Mccallum mike.mccalum@indigo.com") filings = get_filings() Key Concepts Getting financials c = Company("AAPL") filing = c.get_filings(form="10-Q").latest(1) tenq = filing.obj() financials = tenq.financials Listing...
EDGAR Electronic Data Gathering, Analysis, and Retrieval System Fair Disclosure Form 10-K Form 13-F Form 144 References in periodicals archive ? Sec. 1.199-4(e), Treasury has increased the threshold for annual gross receipts to $100 million, or total assets at the end of the tax year of ...
Filed by "insiders" prior intended sale of restricted stock. Non-EDGAR filing Other 0001949846-25-000007.pdf 0001949846-25-000007.rtf View HTML 12/10/2410-Q Quarterly report which provides a continuing view of a company's financial position ...
我通过4种方式实现,分别如下: 方式一:使用map 将有效的字符串定义成map的key,
The emails associated with this malware campaign were spoofed to make them appear as if they had originated from the Securities and Exchange Commission (SEC) Electronic Data Gathering, Analysis, and Retrieval (EDGAR) system. For those not familiar with this system, EDGAR is an automated filing pl...
Describe the bug When I usedget_urls()fromCompanyFilings, I got this error: JSONDecodeError: Expecting value: line 1 column 1 (char 0) To Reproduce Code: from secedgar import CompanyFilings, FilingType my_filings = CompanyFilings(cik_lookup='aapl', ...
.. autoclass:: secedgar.filings.MasterFilings :inherited-members: :members: Examples ^^^ 16 changes: 16 additions & 0 deletions 16 docs/source/usage.rst Original file line numberDiff line numberDiff line change @@ -35,9 +35,22 @@ The ``cik_lookup`` argument can also take multiple t...
from secedgar.cik_lookup import CIKLookup from secedgar.client import NetworkClient from secedgar.core import CompanyFilings, FilingType @@ -342,8 +341,10 @@ def test_filing_returns_correct_number_of_urls( assert all( len(f.get_urls().get(key)) == count for key in f.get_urls()....
Usingfiling_type=FilingType.FILING_13FHRseems to includeboth13F-HR and 13F-HR/A files. Expectation would be that itonlydownloads 13F-HR files, and not the amended filings. To Reproduce from secedgar import CompanyFilings, FilingType filings_13f = CompanyFilings(cik_lookup=ciks, ...