我目前正在尝试使用 Python 中的 edgar 库从 SEC EDGAR 数据库下载 S1 文件。我尝试运行库项目描述中给出的示例代码,如下所示:
company = edgar.Company("Oracle Corp", "0001341439")
tree = company.get_all_filings(filing_type = "10-K")
docs = company.get_documents(tree, no_of_documents=1)
该代码似乎有效,但我无法理解如何在将文档保存为变量后检索该文档。键入 docs 返回 <Element sec-document at 0x7f8bbd0de720>。
任何帮助将不胜感激!