You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using sec-edgar-downloader and would like to know if it's possible to directly download filings (e.g., 10-Q for AAPL) in HTML format without file access?
<?xml version="1.0" ?><!--XBRL Document Created wi...
which is implemented as
# pip install sec-edgar-downloader sec-downloaderfromsec_edgar_downloaderimportDownloaderfromsec_downloaderimportDownloadStorageONLY_HTML="**/*.htm*"storage=DownloadStorage(filter_pattern=ONLY_HTML)
withstorageaspath:
dl=Downloader("MyCompanyName", "[email protected]", path)
dl.get("10-Q", "AAPL", limit=1, download_details=True)
# all files are now deleted and only stored in memorycontent=storage.get_file_contents()[0].contentprint(f"{content[:50]}...")
<?xml version="1.0" ?><!--XBRL Document Created wi...
The text was updated successfully, but these errors were encountered:
Hello 👋,
I'm using sec-edgar-downloader and would like to know if it's possible to directly download filings (e.g., 10-Q for AAPL) in HTML format without file access?
The workaround I'm using currently is:
which is implemented as
The text was updated successfully, but these errors were encountered: