Metadata-Version: 2.4
Name: aed-sdk
Version: 1.1.2
Summary: AED API Python SDK - AED 设备查询 API
Home-page: https://api.aed.com
Author: AED API Platform
Author-email: support@aed.com
License: MIT
Keywords: aed api sdk
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.25.0
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# AED Life API Python SDK

## 安装

```bash
pip install aed-sdk
```

## 使用方法

```python
from aed_sdk import AEDClient

# 创建客户端
client = AEDClient(
    api_key="your_api_key_here",
    api_secret="your_api_secret_here"
)

# 获取附近 AED 设备
result = client.get_nearby_aed(
    latitude=31.23,
    longitude=121.47,
    radius=5000,
    limit=50,
    status=1
)

print(f"附近有 {result['total']} 台 AED 设备")
```

## API 文档

详见 https://api.aed-life.cn/docs
