jadchaar / sec-edgar-downloader

📈 Download filings from the SEC EDGAR database using Python
https://sec-edgar-downloader.readthedocs.io
MIT License
501 stars 137 forks source link

Form "S-1" or "424B4" not found for SGFY #90

Open nono-london opened 3 years ago

nono-london commented 3 years ago

Hi, I'am trying to query forms ("S-1","S-1/A", "EFFECT" and "424B4") related to the IPO of a stock named Signify Health, ticker "SGFY". As per your example, I use:

from sec_edgar_downloader import Downloader

dl = Downloader("./downloads/")
dl.get(filing="S-1", ticker_or_cik="SGFY", include_amends=True,
       after="2021-01-01", download_details=True)
dl.get(filing="8-K", ticker_or_cik="SGFY")
dl.get(filing="424B4", ticker_or_cik="SGFY")
dl.get(filing="EFFECT", ticker_or_cik="SGFY")

This only returns 8-K forms, while the S-1 is actually being mentioned in one of the 8-K (so it must exists).: sec_sgfy_s1

From the SEC website, I confirmed that there has indeed S-1 and S-1/A forms that have been issued:

sec_s1_ammeneds

So it would be great to know what is causing the issue. As well

jadchaar commented 2 years ago

Hey @nono-london thanks for the report. I am in the process of re-writing this package with the official Edgar data API provided by the SEC. This issue seems to be fixed in my in-progress refactor.