Metadata-Version: 2.3
Name: langchain-fmp-data
Version: 0.1.1
Summary: An integration package connecting FmpData and LangChain
License: MIT
Requires-Python: >=3.10,<3.14
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: faiss-cpu (>=1.9.0.post1,<2.0.0)
Requires-Dist: fmp-data[langchain] (>=1.0.0,<2.0.0)
Requires-Dist: langchain (>=0.3.14,<0.4.0)
Requires-Dist: langchain-community (>=0.3.14,<0.4.0)
Requires-Dist: langchain-core (>=0.3.15,<0.4.0)
Requires-Dist: langchain-openai (>=0.3.0,<0.4.0)
Requires-Dist: langgraph (>=0.2.62,<0.3.0)
Project-URL: Repository, https://github.com/MehdiZare/langchain-fmp-data
Project-URL: Source Code, https://github.com/MehdiZare/langchain-fmp-data
Description-Content-Type: text/markdown

# langchain-fmp-data

[![CI](https://github.com/MehdiZare/langchain-fmp-data/actions/workflows/ci.yml/badge.svg)](https://github.com/MehdiZare/langchain-fmp-data/actions/workflows/ci.yml)
[![Release](https://github.com/MehdiZare/langchain-fmp-data/actions/workflows/release.yml/badge.svg)](https://github.com/MehdiZare/langchain-fmp-data/actions/workflows/release.yml)
[![PyPI version](https://badge.fury.io/py/langchain-fmp-data.svg)](https://badge.fury.io/py/langchain-fmp-data)
[![Python Versions](https://img.shields.io/pypi/pyversions/langchain-fmp-data.svg)](https://pypi.org/project/langchain-fmp-data/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

A LangChain integration for Financial Modeling Prep (FMP) API, providing easy access to financial data through LangChain tools and agents.

## Features

- 🔧 **FMPDataToolkit**: Query-based toolkit for retrieving specific financial data tools
- 🤖 **FMPDataTool**: AI-powered agent for natural language financial data queries
- 📊 **Comprehensive Financial Data**: Access to stock prices, financial statements, economic indicators, and more
- 🚀 **LangGraph Integration**: Built on LangGraph for reliable agent workflows
- 🔍 **Vector Search**: Intelligent tool selection using embeddings and similarity search

## Installation

```bash
pip install -U langchain-fmp-data
```

## Quick Start

### Prerequisites

You'll need API keys for:
- Financial Modeling Prep (FMP) - [Get your API key](https://financialmodelingprep.com/developer)
- OpenAI - [Get your API key](https://platform.openai.com/api-keys)

Set them as environment variables:

```bash
export FMP_API_KEY="your-fmp-api-key"
export OPENAI_API_KEY="your-openai-api-key"
```

### Using FMPDataToolkit

The toolkit allows you to retrieve specific financial data tools based on your query:

```python
import os
from langchain_fmp_data import FMPDataToolkit

os.environ["FMP_API_KEY"] = "your-fmp-api-key"
os.environ["OPENAI_API_KEY"] = "your-openai-api-key"

# Get tools for specific financial data needs
query = "Stock market prices, fundamental and technical data"
fmp_toolkit = FMPDataToolkit(query=query, num_results=10)

tools = fmp_toolkit.get_tools()
for tool in tools:
    print(f"- {tool.name}: {tool.description}")
```

### Using FMPDataTool

The FMPDataTool provides an AI agent that can answer complex financial questions:

```python
import os
from langchain_fmp_data import FMPDataTool

os.environ["FMP_API_KEY"] = "your-fmp-api-key"
os.environ["OPENAI_API_KEY"] = "your-openai-api-key"

# Initialize the tool
tool = FMPDataTool()

# Ask financial questions in natural language
response = tool.invoke({"query": "What is the latest price of Bitcoin?"})
print(response)

# Get structured data
response = tool.invoke({
    "query": "Show me Apple's revenue for the last 4 quarters",
    "response_format": "data_structure"
})
print(response)
```

### Response Formats

The FMPDataTool supports three response formats:

- `natural_language`: Human-readable text response (default)
- `data_structure`: Structured JSON data
- `both`: Both natural language and structured data

```python
from langchain_fmp_data import FMPDataTool, ResponseFormat

tool = FMPDataTool()

# Natural language response
response = tool.invoke({
    "query": "What is Tesla's P/E ratio?",
    "response_format": ResponseFormat.NATURAL_LANGUAGE
})

# Structured data response
response = tool.invoke({
    "query": "Get AAPL stock data",
    "response_format": ResponseFormat.DATA_STRUCTURE
})

# Both formats
response = tool.invoke({
    "query": "Show me Microsoft's financial metrics",
    "response_format": ResponseFormat.BOTH
})
```

## Development

### Setup

1. Clone the repository:
```bash
git clone https://github.com/MehdiZare/langchain-fmp-data.git
cd langchain-fmp-data
```

2. Install Poetry (if not already installed):
```bash
curl -sSL https://install.python-poetry.org | python3 -
```

3. Install dependencies:
```bash
poetry install --with dev,test
```

4. Set up pre-commit hooks:
```bash
poetry run pre-commit install
```

### Running Tests

```bash
# Run all tests
poetry run pytest

# Run with coverage
poetry run pytest --cov=langchain_fmp_data --cov-report=term-missing

# Run specific test file
poetry run pytest tests/unit_tests/test_tools.py
```

### Code Quality

This project uses several tools to maintain code quality:

- **Ruff**: Fast Python linter and formatter
- **Mypy**: Static type checking
- **Pre-commit**: Automatic code quality checks before commits

```bash
# Manual linting and formatting
poetry run ruff check langchain_fmp_data/
poetry run ruff format langchain_fmp_data/

# Type checking
poetry run mypy langchain_fmp_data/

# Run all pre-commit hooks
poetry run pre-commit run --all-files
```

### Pre-commit Hooks

The following checks run automatically on commit:
- Ruff linting and formatting
- File encoding and line ending fixes
- YAML/JSON/TOML validation
- Python AST validation
- Debug statement detection

## CI/CD

### GitHub Actions Workflows

- **CI**: Runs on all PRs and pushes to main/dev branches
  - Linting with Ruff
  - Type checking with Mypy
  - Tests on Python 3.10, 3.11, 3.12
  - Cross-platform testing (Ubuntu, macOS, Windows)
  - Code coverage reporting

- **Release**: Automated version management and publishing
  - Automatic version bumping based on PR labels
  - Publishing to PyPI (from main branch)
  - Publishing to TestPyPI (from dev branch)

### PR Labels for Versioning

- `major`: Bumps major version (1.0.0 → 2.0.0)
- `minor`: Bumps minor version (1.0.0 → 1.1.0)
- `patch`: Bumps patch version (1.0.0 → 1.0.1)

## Contributing

Contributions are welcome! Please follow these guidelines:

1. Fork the repository
2. Create a feature branch (`git checkout -b feature/amazing-feature`)
3. Make your changes and ensure tests pass
4. Run pre-commit hooks (`pre-commit run --all-files`)
5. Commit your changes with a descriptive message
6. Push to your fork and open a Pull Request

### Commit Message Format

Follow conventional commits format:
- `feat:` New features
- `fix:` Bug fixes
- `docs:` Documentation changes
- `test:` Test additions or modifications
- `refactor:` Code refactoring
- `chore:` Maintenance tasks

## Project Structure

```
langchain-fmp-data/
├── langchain_fmp_data/     # Main package code
│   ├── __init__.py         # Package exports
│   ├── agent.py            # LangGraph agent implementation
│   ├── tools.py            # FMPDataTool implementation
│   └── toolkits.py         # FMPDataToolkit implementation
├── tests/                  # Test suite
│   ├── unit_tests/         # Unit tests
│   └── integration_tests/  # Integration tests
├── scripts/                # Utility scripts
├── .github/                # GitHub Actions workflows
├── pyproject.toml          # Project configuration
├── README.md              # This file
└── CLAUDE.md              # AI assistant documentation
```

## Dependencies

- **Python**: 3.10+
- **LangChain**: Core and Community packages
- **FMP-Data**: ^1.0.0 with LangChain extras
- **LangGraph**: For agent workflows
- **OpenAI**: For embeddings and LLM

## License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.

## Support

- 📖 [Documentation](https://github.com/MehdiZare/langchain-fmp-data/wiki)
- 🐛 [Issue Tracker](https://github.com/MehdiZare/langchain-fmp-data/issues)
- 💬 [Discussions](https://github.com/MehdiZare/langchain-fmp-data/discussions)

## Acknowledgments

- [Financial Modeling Prep](https://financialmodelingprep.com/) for providing comprehensive financial data APIs
- [LangChain](https://www.langchain.com/) for the excellent framework
- [OpenAI](https://openai.com/) for embedding and language models

## Changelog

See [CHANGELOG.md](CHANGELOG.md) for a detailed list of changes.

---

Made with ❤️ by [Mehdi Zare](https://github.com/MehdiZare)

