Skip to content
Discussion options

You must be logged in to vote

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 EightK object that may have PressReleases

# Convert the filing to an EightK data object
eightk = filing.obj()

# Some eightk filings have press releases
eightk.press_releases[0]
class PressRelease:
    """
    Represents a press release attachment from an 8-K filing
    With the Type EX-99.1
    """

    def __init__(self, attachment: Attachment):
        self.attachment: Attachment = attachment

    def url(self):
        return self.attachment.url

    @property
    def document(self) -> str:
        return self.attachment.document

    @prope…

Replies: 2 comments 1 reply

Comment options

You must be logged in to vote
1 reply
@zero-stroke
Comment options

Answer selected by dgunning
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants