Closed MuslemRahimi closed 5 days ago
Ok i have now
from edgar import *
set_identity("Michael Mccallum mike.mccalum@indigo.com")
filings = Company("NVDA").get_filings(form="10-Q").latest(10)
print(filings)
output = filings[0].search("Revenue by Geography")
print(output[18])
where the output is
How can I convert the data which has docsection type into a pandas dataframe?
Hey, I'm going to say no - not yet, but I'm actively working on a related issue around trying to get the breakdowns to display correctly. I will give an update on this based on my progress over the next few days
Any updates yet?
Yes,
c = Company("NVDA")
xb = c.get_filings(form="10-Q").latest(1).xbrl()
Look for the statement number
xb.statements[70]
In my case when I run the code
Is there a way to get the data in pandas form for further modifications?
Yes. Use
xb.statements[70].get_dataframe()
Closed as answered
Hey everyone,
I just wanted to know if it is possible to get specific data such as Data Center Revenue from Nvidia for each quarter which they report for the last 10 years.
Is that possible with the current library here?
Cheers