How do I parse this 8-K? #158
-
|
When I access an attachment with financial info like this: How do I actually parse that data from the file? I've tried a bunch of its methods but none seem to work. Output of the code: |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
|
Filings can be converted to a Data Object that represents the parsed version of the filing, using For 8-K filing this results in and # Convert the filing to an EightK data object
eightk = filing.obj()
# Some eightk filings have press releases
eightk.press_releases[0]I'm working on an improved version of HTML parsing which should be available soon. Currently the output is passable |
Beta Was this translation helpful? Give feedback.
-
|
Improved HTML parsing is available c = Company("BKE")
# List of exhibits
c.exhibits
# View the second exhibit
c.exhibits[1].view()
|
Beta Was this translation helpful? Give feedback.

Filings can be converted to a Data Object that represents the parsed version of the filing, using
filing.obj()For 8-K filing this results in and
EightKobject that may havePressReleases