Metadata-Version: 2.4
Name: keatpy
Version: 0.1.0
Summary: Official Python SDK for Synapse by Keaton Technologies
License: MIT
Project-URL: Homepage, https://keatontechnologies.com/synapse
Project-URL: Repository, https://github.com/microphonicwire-blip/keatpy
Keywords: keaton,synapse,api,currency,weather,stocks,news
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

# keatpy

Official Python SDK for [Synapse](https://keatontechnologies.com/synapse) by Keaton Technologies.

One API key. Currency, weather, stocks, news, and Wikipedia — unified.

## Install

```bash
pip install keatpy
```

## Quick Start

```python
from keatpy import Synapse

client = Synapse(api_key="syn_yourkey")

# Currency conversion
result = client.currency.convert("CAD", "USD", 100)
print(f"100 CAD = {result.result} USD")

# Weather
w = client.weather.current("Vancouver")
print(f"{w.city}: {w.temperature}°C, {w.description}")

# Stock quote
s = client.stocks.quote("NVDA")
print(f"NVDA: ${s.price} ({s.change_pct})")

# Wikipedia
wiki = client.wiki.search("quantum computing", sentences=2)
print(wiki.summary)

# News
news = client.news.search("PC hardware", limit=3)
for article in news.articles:
    print(article.title, "—", article.source)
```

## Get an API Key

Visit [keatontechnologies.com/synapse](https://keatontechnologies.com/synapse)

## License

MIT
