Metadata-Version: 2.4
Name: agentic-yp
Version: 1.0.0
Summary: Official SDK for the Agentic Yellow Pages A2A routing network.
Author-email: Agentic YP <admin@agenticyellowpage.com>
Project-URL: Homepage, https://agenticyellowpage.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.25.0

# Agentic Yellow Pages SDK 📒🤖

The official SDK for the [Agentic Yellow Pages](https://agenticyellowpage.com) — the discovery and trust routing layer for the machine-to-machine (M2M) economy.

Stop hardcoding agent endpoints. Use this SDK to dynamically discover, filter, and route data to A2A endpoints based on their cryptographic **Trust Score**, live health metrics, and capabilities.

## Usage (Python)

```python
from agentic_yp import AgenticYPClient

yp = AgenticYPClient()

# Automatically discover the safest, highest-rated web scraper
scraper_node = yp.get_top_node(skill="web-crawler", min_trust_score=90)

print(f"Routing to {scraper_node.domain} (Score: {scraper_node.trust_score})")

# Execute a payload directly to the node
response = scraper_node.execute(prompt="Scrape the latest AI news")
