A package for fetching SEC filings data
Project description
SEC Meta
A Python package for fetching SEC filings data for companies by ticker or CIK.
Installation
pip install secmeta
Usage
Command Line Interface
# Get filings for a ticker
secmeta AAPL -c "Your Name <your@email.com>"
# Get filings for multiple tickers
secmeta AAPL MSFT GOOGL -c "Your Name <your@email.com>"
# Get filings from a CSV file
secmeta -i companies.csv -c "Your Name <your@email.com>"
# Filter by form type and date range
secmeta AAPL --form 10-K --year-from 2020 --year-to 2025 -c "Your Name <your@email.com>"
Python API
from secmeta import Submissions
# Get filings by CIK
df_cik = Submissions(cik="0001288776", form="10-K", name="John Doe", email="example@email.com").to_dataframe()
# Get filings by ticker
df_ticker = Submissions(ticker="GOOGL", form="10-K", name="John Doe", email="example@email.com").to_dataframe()
# Get filings from a CSV file
df_csv = Submissions(csv_path="input_companies.csv", form="10-K", name="John Doe", email="example@email.com").to_dataframe()
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
secmeta-0.1.0.tar.gz
(6.2 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file secmeta-0.1.0.tar.gz.
File metadata
- Download URL: secmeta-0.1.0.tar.gz
- Upload date:
- Size: 6.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0ec852399f084e8a744459590bfa78b12713e93409e6add0782b39d38550cdef
|
|
| MD5 |
a3fb763c32d13b934548e965943180a6
|
|
| BLAKE2b-256 |
9480dc6563cbda12da603d7fa0fc16f69f6070c47fd0b6c20b68e1f9fa041700
|
File details
Details for the file secmeta-0.1.0-py3-none-any.whl.
File metadata
- Download URL: secmeta-0.1.0-py3-none-any.whl
- Upload date:
- Size: 6.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4d93c2db7cb7214aaa26e21a9f7d02618feae1e0dd683bb8a371c86f9bc118b0
|
|
| MD5 |
2fcdc569dfc8cc5c8ce4a800451a010f
|
|
| BLAKE2b-256 |
8ed98c4168723b122028e67fbfa47ecee8f49decdbc888985ccf335f40463000
|