Download SEC filings from the EDGAR database using Python.
Project description
sec-edgar-downloader is a 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.
Quick Start
Installation
Install and update this package using pip or pipenv:
$ pip install -U sec-edgar-downloader
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("8-K", "AAPL")
# Get all 8-K filings for Apple, including filing amends (8-K/A)
dl.get("8-K", "AAPL", include_amends=True)
# Get all 8-K filings for Apple after January 1, 2017 and before March 25, 2017
# Note: before_date and after_date strings must be in the form "YYYYMMDD"
dl.get("8-K", "AAPL", after_date="20170101", before_date="20170325")
# Get the five most recent 8-K filings for Apple
dl.get("8-K", "AAPL", 5)
# Get all 10-K filings for Microsoft (ticker: MSFT)
dl.get("10-K", "MSFT")
# Get the latest 10-K filing for Microsoft
dl.get("10-K", "MSFT", 1)
# Get the latest 10KSB filing for Ubiquitech Software
dl.get("10KSB", "0001411460", 1)
# Get all 10-Q filings for Visa (ticker: V)
dl.get("10-Q", "V")
# Get all 13F-NT filings for the Vanguard Group (CIK: 0000102909)
dl.get("13F-NT", "0000102909")
# Get all 13F-HR filings for the Vanguard Group
dl.get("13F-HR", "0000102909")
# Get all SC 13G filings for Apple
dl.get("SC 13G", "AAPL")
# Get all SD filings for Apple
dl.get("SD", "AAPL")
# Get the latest supported filings, if available, for Apple
for filing_type in dl.supported_filings:
dl.get(filing_type, "AAPL", 1)
# Get the latest supported filings, if available, for a
# specified list of tickers and CIKs
symbols = ["AAPL", "MSFT", "0000102909", "V", "FB"]
for s in symbols:
for filing_type in dl.supported_filings:
dl.get(filing_type, s, 1)
Supported SEC Filings
4
8-K
10-K
10KSB
10-Q
13F-NT and 13F-HR
SC 13G
SD
S-1
You can learn more about the different types of SEC filings here.
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.
Documentation
For full documentation, please visit sec-edgar-downloader.readthedocs.io.
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-3.0.3.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2fd77ba56f64a8b462df7aabaf75027bae143949de9484e645d52740919cfab4 |
|
MD5 | d37f33c70e61b7428d7f94b07340239f |
|
BLAKE2b-256 | c397b3e5a3c188e3b25f81bcd402a3efcc5c0074d83e5f1bde98de4cce2ad5ad |
Hashes for sec_edgar_downloader-3.0.3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f8459e3e90220d26493f403ee458f7693e58c0b438867d715299cff4ffd2e076 |
|
MD5 | fdccf9adf118477e9c92d4de0e88cefd |
|
BLAKE2b-256 | 3c99f6108da4857734f6866548bdf2b8e5a8b33e7994838e5f1439d65ca38ac3 |