Metadata-Version: 2.4
Name: geonode-scraper-langchain
Version: 0.1.0
Summary: LangChain tools for the Geonode Scraper API
Author: Geonode Team
License-Expression: MIT
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Typing :: Typed
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: geonode-scraper-tools-core>=0.1.0
Requires-Dist: langchain-core>=1.0
Provides-Extra: dev
Requires-Dist: pytest>=8.0; extra == "dev"
Requires-Dist: pytest-cov>=5.0; extra == "dev"
Requires-Dist: ruff>=0.12.11; extra == "dev"

# Geonode Scraper LangChain Tools

LangChain tools for the Geonode Scraper API.

This package depends on `geonode-scraper-tools-core` for the shared service,
schemas, and operation registry.

## Installation

```sh
pip install geonode-scraper-langchain
```

## Usage

```python
from geonode_scraper_langchain import build_langchain_tools
from geonode_scraper_tools_core import ScraperToolSettings

settings = ScraperToolSettings(
    host="https://api.example.com",
    api_key="your-api-key",
)

tools = build_langchain_tools(settings=settings)
```

## Exposed Tools

- `scraper_extract_content`
- `scraper_get_job_result`
- `scraper_wait_for_job`
- `scraper_list_jobs`
- `scraper_get_statistics`
- `scraper_check_health`
