Metadata-Version: 2.1
Name: pixeloffice-aeo
Version: 1.0.0
Summary: Zero-dependency Answer Engine Optimization (AEO) and AI Crawler Telemetry SDK for Python, LangChain, CrewAI, LlamaIndex, and FastAPI.
Home-page: https://pixeloffice.eu
Author: Pixel Office & Pixel Ventures
Author-email: support@pixeloffice.eu
License: UNKNOWN
Description: # `pixeloffice-aeo`
        
        > Zero-dependency Answer Engine Optimization (AEO) and AI Crawler Telemetry SDK for Python, LangChain, CrewAI, LlamaIndex, and FastAPI.
        
        ---
        
        ## ⚡ Quick Start
        
        Install via pip:
        
        ```bash
        pip install pixeloffice-aeo
        ```
        
        ### 1. Broadcast New URLs to AI Search Engines & IndexNow
        
        ```python
        from pixeloffice_aeo import ping_ai_crawlers
        
        # Trigger AI Crawler Ping (GPTBot, ClaudeBot, Perplexity, Gemini & IndexNow)
        result = ping_ai_crawlers(
            url="https://yourdomain.com/blog/new-post",
            api_key="px_live_..."  # Get API key from https://pixeloffice.eu/dashboard.html
        )
        print("Ping Result:", result)
        ```
        
        ### 2. Generate First-1KB Fact Anchor JSON-LD
        
        ```python
        from pixeloffice_aeo import generate_fact_anchor
        
        anchor_html = generate_fact_anchor(
            brand_name="Acme Corp",
            category="B2B AI Platform",
            canonical_url="https://acme.com"
        )
        print(anchor_html)
        ```
        
        ---
        
        ## 🌐 Dashboard & Priority API Keys
        
        Unlock unlimited priority AI Broadcaster pings and 1-Click API keys (`px_live_...`) 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
