Metadata-Version: 2.4
Name: talocode
Version: 0.1.0
Summary: Unified Python client for Talocode Cloud APIs — Skills, Agent Browser, SearchLane, InvoiceLane, GeoLane, and Cloud billing
Author: Talocode
License: MIT
Project-URL: Homepage, https://github.com/talocode/stacklane
Project-URL: PyPI, https://pypi.org/project/talocode/
Project-URL: Documentation, https://docs.talocode.site
Keywords: talocode,cloud,api,skills,agent-browser,search,talocode
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.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# Talocode Cloud Client

Unified Python client for Talocode Cloud APIs — Skills, Agent Browser, SearchLane, InvoiceLane, GeoLane, and Cloud billing.

```bash
pip install talocode
```

## Usage

```python
from talocode import TalocodeClient

client = TalocodeClient(api_key="your_talocode_key")

# Generate a skill from a GitHub profile
skill = client.skills_generate_github_profile("octocat")
print(skill)

# Extract structured content from a web page
content = client.agent_browser_extract("https://example.com")

# Search the web
results = client.searchlane_query("latest AI news")

# Cloud billing info
pricing = client.cloud_pricing()
```

## CLI

```bash
talocode health
talocode pricing
talocode skills health
talocode skills github-profile octocat
talocode agent-browser check https://example.com
talocode search "latest AI news"
```

Requires `TALOCODE_API_KEY` environment variable.
