Download company filings from the SEC EDGAR database using Python.
Project description
sec-edgar-downloader
Python package for downloading company filings from the SEC EDGAR database. Searches can be conducted either by stock ticker or Central Index Key (CIK). You can use the SEC CIK lookup tool if you cannot find an appropriate ticker. Supported company filings: 8-K, 10-K, 10-Q, 13F-NT, 13F-HR, SC 13G, SD. Learn more about the different types of SEC filings here.
Installation
Install and update this package using pip or pipenv:
pip install -U sec-edgar-downloader
Supported filings
sec-edgar-downloader
supports the following SEC filings:
- 8-K
- 10-K
- 10-Q
- 13F-NT and 13F-HR
- SC 13G
- SD
Example usage
from sec_edgar_downloader import Downloader
# Initialize a downloader instance.
# If no argument is passed to the constructor, the package
# will attempt to locate the user's downloads folder.
dl = Downloader("/path/to/valid/save/location")
# Get all 8-K filings for Apple (ticker: AAPL)
dl.get_8k_filings("AAPL")
# Get all 8-K filings for Apple, including filing amends (8-K/A)
dl.get_8k_filings("AAPL", include_amends=True)
# Get all 8-K filings for Apple before March 25, 2017
# Note: before_date string must be in the form "YYYYMMDD"
dl.get_8k_filings("AAPL", before_date="20170325")
# Get the past 5 8-K filings for Apple
dl.get_8k_filings("AAPL", 5)
# Get all 10-K filings for Microsoft (ticker: MSFT)
dl.get_10k_filings("MSFT")
# Get the latest 10-K filing for Microsoft
dl.get_10k_filings("MSFT", 1)
# Get all 10-Q filings for Visa (ticker: V)
dl.get_10q_filings("V")
# Get all 13F-NT filings for Vanguard Group (CIK: 0000102909)
dl.get_13f_nt_filings("0000102909")
# Get all 13F-HR filings for Vanguard Group
dl.get_13f_hr_filings("0000102909")
# Get all SC 13G filings for Apple
dl.get_sc_13g_filings("AAPL")
# Get all SD filings for Apple
dl.get_sd_filings("AAPL")
# Get all the latest filings (8-K, 10-K, 10-Q, 13F, SC 13G, SD), if available, for Apple
dl.get_all_available_filings("AAPL", 1)
# Get all the latest filings (8-K, 10-K, 10-Q, 13F, SC 13G, SD), if available,
# for a specified list of tickers and CIKs
identifiers = ["AAPL", "MSFT", "0000102909", "V", "FB"]
for id in identifiers:
dl.get_all_available_filings(id, 1)
Contributing
If you encounter a bug or would like to see a new company filing or feature added to sec-edgar-downloader
, please file an issue or submit a pull request.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for sec-edgar-downloader-2.1.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | a69aa5ce42ca252b1d1093b4667a3411b72aab21876bae7b610d6ab2819ac014 |
|
MD5 | dbaae0de7089910cdef84e9180b17402 |
|
BLAKE2b-256 | a6bbfb0db64448ed7932cb8072b446130f84f4c5859bd366b5574fbaabf4a1f3 |
Hashes for sec_edgar_downloader-2.1.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5b7452deec52c9aacc33840678f6a5e48fe2398a0900a3435adddd8a27be09f8 |
|
MD5 | a0ca58efdf699d5bd0521a0c43aed296 |
|
BLAKE2b-256 | b5f732e009fb4c28b981e10f6b58bc27a4134a55d4bdaf04a82a3f42f5634ad0 |