-
Notifications
You must be signed in to change notification settings - Fork 52
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
Adding Support for Other Filing Types #88
base: main
Are you sure you want to change the base?
Conversation
…s for 10-Q and 10-K specifically
Completed:
To-Do:
|
This kinda falls under #67 and #48 as both still apply, just need to expand the same to 10-Ks The only thing I can think of from here is that Edgar10QParser and Edgar10KParser are currently duplicated code. assuming all files will follow the same steps, I could abstract it out in a similar to how I did TopSectionManager (but do we even want to do this? |
Hi @akaashdash, thanks for the amazing work! 🚀⚡ I have a couple of questions:
|
|
I forgot to answer the second part sorry. I was testing my code manually, but unit tests for 10Ks need to be added. Not sure how to do it without breaking existing tests, some help on this would be appreciated. All tests for 10Q have the exact same results as before, no changes on that front. |
Hi @akaashdash thanks for the answering the questions. I would strongly recommend writing tests for 10-K parser like we did for 10-Q parser because we need to cover extremely large number of filings / edge cases.
Please go through Discussion 48 to understand how we have setup tests for 10-Q (or parsing test in general). Let me know if something doesn't make sense! |
Completed:
|
Working on #87
So far:
To do: