Metadata-Version: 2.4
Name: konect4ai
Version: 0.0.1
Summary: Official Python SDK for Konect4ai - turn any website into an AI-callable tool via REST, MCP, CLI, RSS and SDK.
Project-URL: Homepage, https://konect4ai.com
Project-URL: Documentation, https://konect4ai.com/setup
Project-URL: Issues, https://konect4ai.com/zh-TW/contact-us
Author-email: Konect4ai <cpw688@gmail.com>
License: MIT License
        
        Copyright (c) 2026 Konect4ai
        
        Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
License-File: LICENSE
Keywords: ai-agent,api,drift-detection,konect4ai,mcp,model-context-protocol,rss,web-scraping
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.9
Requires-Dist: httpx>=0.24
Description-Content-Type: text/markdown

# konect4ai

Official Python SDK for [Konect4ai](https://konect4ai.com).

Konect4ai turns any website into an AI-callable tool. Build once, then consume the same capability through REST, MCP, CLI, RSS or this SDK. Built-in structure drift detection alerts you when a target site changes, so your pipeline does not silently break.

> **Early preview.** This is version 0.0.1. The client performs real HTTP calls, but the API surface is still expanding. Pin your version and check the changelog before upgrading.

## Install

```bash
pip install konect4ai
```

Requires Python 3.9 or later.

## Usage

```python
from konect4ai import Konect4ai

client = Konect4ai(license_key="YOUR-LICENSE-KEY")

# Run a generated API
data = client.run("your-job-id")
print(data)

# Get the MCP endpoint for Claude, ChatGPT, Cursor and other MCP clients
print(client.mcp_url())

# Get the RSS feed URL for a generated API
print(client.feed_url("your-job-id"))
```

### Self-hosted deployments

```python
client = Konect4ai(
    license_key="YOUR-LICENSE-KEY",
    base_url="https://konect4ai.internal.example.com",
)
```

## Getting a license key

Sign up at [konect4ai.com](https://konect4ai.com). A 14-day free trial is available.

## Links

- Website: https://konect4ai.com
- Setup guide: https://konect4ai.com/setup
- Pricing: https://konect4ai.com/zh-TW/pricing
- Contact: https://konect4ai.com/zh-TW/contact-us

## License

MIT
