Metadata-Version: 2.1
Name: kwai-data-collection
Version: 1.0.2
Summary: kwai Background data collection
License: MIT
Author: martianbugs
Requires-Python: >=3.9
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
Requires-Dist: drissionpage (>=4.1.0.17,<5.0.0.0)
Description-Content-Type: text/markdown

# kwai-data-collection
快手后台数据采集工具

## 安装
```bash
pip install kwai-data-collection
```

## 使用方法
### 连接浏览器
```python
from XhsDataCollection import Collector

collector = Collector()
collector.connect_browser(port=9527)
```

### 下载客服考核文件
```python
file_path = collector.im.data.download__assess__detail(
    date='2025-02-05',
    save_path=r'C:\Users\sanrose\Desktop\temp',
    save_name='快手客服数据_20250205',
    open_page=True,
)
```
