Metadata-Version: 2.1
Name: pixeloffice-paymeter
Version: 1.0.1
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: # `pixeloffice-paymeter`
        
        > 🎁 **Get 1,000 Free Production Requests & Live Dashboard Key**:  
        > Claim your free API key and track real-time USDC agent payouts in 1 click at **[pixeloffice.eu/dashboard.html](https://pixeloffice.eu/dashboard.html)**
        
        Python HTTP 402 / x402 Micropayment & Autonomous Agent Metering Middleware for FastAPI, Flask, and MCP servers.
        
        ---
        
        ## ⚡ Quick Start
        
        ```bash
        pip install pixeloffice-paymeter
        ```
        
        ### FastAPI Middleware Example:
        
        ```python
        from fastapi import FastAPI
        from pixeloffice_paymeter import PaymeterMiddleware
        
        app = FastAPI()
        
        # 1-line middleware to protect endpoint with $0.005 micro-metering
        app.add_middleware(
            PaymeterMiddleware,
            price_usd=0.005,
            api_key="px_dev_live_your_key_here",  # Get free at pixeloffice.eu/dashboard.html
            payout_wallet="0xYourWalletAddress"
        )
        
        @app.get("/api/search")
        async def search_endpoint(q: str):
            return {"status": "paid", "result": f"Data for {q}"}
        ```
        
        ---
        
        ## 📊 Live Developer Dashboard
        
        Track live per-call revenue and agent transactions at:  
        👉 **[https://pixeloffice.eu/dashboard.html](https://pixeloffice.eu/dashboard.html)**
        
        ---
        
        ## 📄 License
        
        MIT © [Pixel Office & Pixel Ventures](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
