Metadata-Version: 2.4
Name: jbssdk
Version: 0.0.7
Summary: A small example package
Author-email: Licheng Zhou <licheng.zhou@cathay.fr>
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: dotenv>=0.9.9
Requires-Dist: httpx>=0.28.1
Requires-Dist: markdown>=3.8.2
Requires-Dist: pydantic>=2.11.7

# Cathay JBS Python SDK

跨项目使用的JBS Python SDK

# 安装

> 版本要求 `python>=3.10`

```bash
pip install jbssdk
```

# 使用

```python
from jbssdk.Client import JBS
import asyncio


async def main():
    jbs = JBS()
    res = await jbs.get_deal_after_info()
```
