Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Not downloading certain 10-K fillings, even though exist #107

Open
alexdinisor98 opened this issue Dec 18, 2022 · 2 comments
Open

Not downloading certain 10-K fillings, even though exist #107

alexdinisor98 opened this issue Dec 18, 2022 · 2 comments

Comments

@alexdinisor98
Copy link

alexdinisor98 commented Dec 18, 2022

Hello!
For some CIKs, the downloader does not work, even though if I search for the specific CIKs on the SEC EDGAR database website there I get the needed annual reports.
Example: 10-K for 3662

dl.get(filing="10-K", ticker_or_cik='0000003662', download_details=False)
Output: 0.

Same for CIK 3398, 3941
Am I the one who is doing smth wrong? Is there smth I am missing?

Thanks in advance.

@alexdinisor98 alexdinisor98 changed the title Issue with downloading certain 10-K fillings Not downloading certain 10-K fillings, even though exist Jan 12, 2023
@th-simon
Copy link

th-simon commented Mar 14, 2023

I have had a similar issue. One of the problematic CIKs that I encountered was CIK=4969. When I'm using the code to download 10-K filings from 2010 to 2020, it doesn't include a file for March 2013, which clearly exists on EDGAR. Is there anything I'm doing wrong (or that I need to fix to get a correct download)?

In the given example, cik_list includes just the relevant CIK (4969):

for i in range(len(cik_list)):
    try:
        dl.get("10-K",cik_list[i] , download_details=False, after="2013-01-01", before="2013-12-31")
        print(f"Downloaded 10-K for CIK {cik_list[i]}")
        success_count += 1
    except:
        time.sleep(10)
        i=i-1
        print(f"Failed to download 10-K for CIK {cik_list[i]}. Retrying in 10 seconds.")
        failure_count += 1

Python returns that it downloaded successfully, but there is no file. Yet, the filing exists:
https://www.sec.gov/Archives/edgar/data/4969/000119312513098644/0001193125-13-098644-index.htm

@jameswang14
Copy link

I think this is an issue at the EDGAR level. I tried hitting their search-index with a barebones query using CIK 3662 and it says it doesn't have any 10-Ks.

image
(see the hits: 0)

I tried some other query variations but no luck. Even when I try to get all forms for 3662, no 10-Ks show up.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants