Metadata-Version: 2.1
Name: pixeloffice-paymeter
Version: 1.0.0
Summary: Zero-dependency Agent-to-Agent (A2A) Identity and Paymeter Verification SDK for Python, FastAPI, LangChain, CrewAI, and LlamaIndex.
Home-page: https://pixeloffice.eu
Author: Pixel Office & Pixel Ventures
Author-email: support@pixeloffice.eu
License: UNKNOWN
Description: # Pixel Office A2A Paymeter & Identity SDK for Python
        
        Zero-dependency Python SDK for **Agent-to-Agent (A2A) Identity & Paymeter Verification** for Python, FastAPI, LangChain, CrewAI, and LlamaIndex.
        
        ## Installation
        
        ```bash
        pip install pixeloffice-paymeter
        ```
        
        ## Quick Start
        
        ```python
        from pixeloffice_paymeter import verify_a2a_identity, authorize_agent_payment, PaymeterClient
        
        # Verify A2A agent identity token
        identity = verify_a2a_identity(agent_token="px_a2a_agent_key_xxx")
        print(f"Agent Verified: {identity['valid']}")
        print(f"Agent Niche: {identity['niche']}")
        
        # Authorize micropayment between AI agents
        payment = authorize_agent_payment(from_agent="agent_alpha", to_agent="agent_beta", amount_usd=0.05)
        print(f"Payment Status: {payment['status']}")
        ```
        
        ## Features
        - **A2A Identity Handshake**: Real-time verification of autonomous AI agent keys.
        - **Micro-Meter Billing**: Sub-cent transaction authorization for agentic workflows.
        - **35ms Latency**: Native integration with [Pixel Office EU](https://pixeloffice.eu).
        
Platform: UNKNOWN
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
