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

Output format contains missing values #42

Closed
imMoya opened this issue Sep 23, 2024 · 1 comment · Fixed by #44
Closed

Output format contains missing values #42

imMoya opened this issue Sep 23, 2024 · 1 comment · Fixed by #44
Labels
bug Something isn't working enhancement New feature or request

Comments

@imMoya
Copy link

imMoya commented Sep 23, 2024

I had developed a python script to filter the output by form_name. However, during recent executions of the code, the output of the files has changed considerably:

  • It fixes the duplication of certain fields
  • However, some fields (e.g. root_form, form_name) are now empty

Could it be possible to incorporate those missing values as per the legacy output?

Legacy output from search:

    {
        "root_form": "SC TO-I",
        "form_name": "Tender offer statement",
        "filed_at": "2024-05-08",
        "reporting_for": null,
        "entity_name": [
            "Monster Beverage Corp",
            "Monster Beverage Corp"
        ],
        "ticker": [
            "MNST",
            "MNST"
        ],
        "company_cik": [
            "0000865752",
            "0000865752"
        ],
        "company_cik_trimmed": [
            "865752",
            "865752"
        ],
        "place_of_business": [
            "Corona, California",
            "Corona, California"
        ],
        "incorporated_location": [],
        "file_num": "005-41221",
        "file_num_search_url": "https://www.sec.gov/cgi-bin/browse-edgar/?filenum=005-41221&action=getcompany",
        "film_num": "24924266",
        "filing_details_url": [
            "https://www.sec.gov/Archives/edgar/data/865752/000110465924058430/0001104659-24-058430-index.html",
            "https://www.sec.gov/Archives/edgar/data/865752/000110465924058430/0001104659-24-058430-index.html"
        ],
        "filing_document_url": [
            "https://www.sec.gov/Archives/edgar/data/865752/000110465924058430/tm2413707d1_exa1a.htm",
            "https://www.sec.gov/Archives/edgar/data/865752/000110465924058430/tm2413707d1_exa1a.htm"
        ]
    }

New output from search:

    {
        "root_form": null,
        "form_name": "",
        "filed_at": "2024-05-08",
        "reporting_for": null,
        "entity_name": "Monster Beverage Corp",
        "ticker": "MNST",
        "company_cik": "0000865752",
        "company_cik_trimmed": "865752",
        "place_of_business": "Corona, California",
        "incorporated_location": [],
        "file_num": "005-41221",
        "file_num_search_url": "https://www.sec.gov/cgi-bin/browse-edgar/?filenum=005-41221&action=getcompany",
        "film_num": "24924266",
        "filing_details_url": "https://www.sec.gov/Archives/edgar/data/865752/000110465924058430/0001104659-24-058430-index.html",
        "filing_document_url": "https://www.sec.gov/Archives/edgar/data/865752/000110465924058430/tm2413707d1_exa1c.htm"
    }
@GalenReich GalenReich added bug Something isn't working enhancement New feature or request labels Sep 26, 2024
@GalenReich
Copy link
Collaborator

Thanks for flagging this, due to a tweak by the SEC, these fields got lost in our tool 🙌 #44 fixes this and we'll publish a PyPi release soon so that it's fixed there too.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working enhancement New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants