dgunning / edgartools

Navigate SEC Edgar data in Python
MIT License
516 stars 101 forks source link

Textual Information Extraction #106

Open Sindhuja217 opened 2 months ago

Sindhuja217 commented 2 months ago

Is there any way to extract the textual information for each section of Form 10Q

dgunning commented 2 months ago

You can get sections of a 10-K or 10-Q like so

filing = Company("AAPL").get_filings(form="10-Q").latest(1)
tenq = filing.obj()
print(tenq.items)
tenq['Item 1']
Sindhuja217 commented 2 months ago

Yes that works Thank you so much but is there any way where I can extract only the textual part without the tables in the sections