Metadata-Version: 2.1
Name: redfox-python-sdk
Version: 0.2.1
Summary: RedFox 红狐数据平台 Python SDK
Home-page: https://redfox.hk
Author: RedFox
Author-email: dev@redfox.hk
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# RedFox Python SDK

红狐数据平台 Python SDK，支持通过简洁的 Python 接口调用红狐平台所有数据 API。

## 安装

```bash
pip install redfox-sdk
```

## 快速开始

```python
from redfox import RedFoxClient

client = RedFoxClient(api_key="your_api_key")

# 搜索抖音作品
result = client.douyin.search_articles(keyword="人工智能")
for item in result["list"]:
    print(f"{item['title']} - 点赞: {item['likeCount']}")
```

## 获取 API Key

前往 [API Keys 页面](https://redfox.hk/settings/api-keys?source=github) 获取。

## License

MIT


