Skip to main content

A Python package for parsing SEC data with XML and web scraping tools

Project description

sec_eagle

sec_eagle is a Python package for fetching and parsing SEC (Securities and Exchange Commission) filings. It leverages web scraping and XML parsing to help analysts and developers extract structured financial data.

🔍 Features

  • Fetch SEC filing data using Requests
  • Export data to Pandas DataFrames
  • Utilities for identifying key financial metrics
  • Any Inline Fact with a tag is scrapable

🚀 Installation

pip install sec_eagle


## 📦 Example Usage

```python
from sec_eagle import FileGather, SecCompany
import pandas as pd

# Initialize FileGather to search for filings
email = "your.email@example.com"
filings = FileGather(email=email, return_type="df")

# Specify the tickers and filing types
tickers = ["AAPL", "AMZN", "NFLX"]
filing_types = ["10-K", "10-Q", "20-F", "40-F"]
urls = filings.company_file(filing_types, tickers, "ticker")

# Tags to extract from XML filings
data_tags = ["dei:EntityCommonStockSharesOutstanding","dei:SecurityExchangeName"]  # example tags
data = []

# Loop through filings and collect parsed data
for url in urls:
    company = SecCompany(url=url, email=email, return_type="df")
    xml_data = company.xml_parser(data_tags)
    data.append(xml_data)

# Combine all company data into a single DataFrame
df = pd.concat(data).reset_index(drop=True)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sec_eagle-0.1.26.tar.gz (5.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

sec_eagle-0.1.26-py3-none-any.whl (6.0 kB view details)

Uploaded Python 3

File details

Details for the file sec_eagle-0.1.26.tar.gz.

File metadata

  • Download URL: sec_eagle-0.1.26.tar.gz
  • Upload date:
  • Size: 5.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.6

File hashes

Hashes for sec_eagle-0.1.26.tar.gz
Algorithm Hash digest
SHA256 cc93b4a4cf1a1cea9717316e32e92b058055b16e9105d257d561c1bb573972c9
MD5 7550595c64f0a0aa4d7413341bdaaf2b
BLAKE2b-256 f17725265e31dab759260cd242bf280f4ebed2e1b27ca6bccf1124943e265f03

See more details on using hashes here.

File details

Details for the file sec_eagle-0.1.26-py3-none-any.whl.

File metadata

  • Download URL: sec_eagle-0.1.26-py3-none-any.whl
  • Upload date:
  • Size: 6.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.6

File hashes

Hashes for sec_eagle-0.1.26-py3-none-any.whl
Algorithm Hash digest
SHA256 48dfb53e3cbaa6fcdc4064c0648a4f91071c78dc8a6849776fb5aef757529d6f
MD5 92ffce6292422c4746c56da730503d69
BLAKE2b-256 0b69697ca821ca9c8def0cea0c5a023573aee9f8885192ff8695e2024db4c87d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page