Metadata-Version: 2.1
Name: jx3api
Version: 2024.8.11
Summary: The Python SDK to the JX3API
Home-page: https://www.jx3api.com
Author: JX3API
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Description-Content-Type: text/markdown
Requires-Dist: aiohttp

# jx3api-py
The Python SDK to the [JX3API](https://www.jx3api.com).

## Installation

### From pypi
```bash
pip install --no-cache -U jx3api
```

### From github
```bash
pip install --no-cache -U git+https://github.com/JX3API/jx3api-py.git
```

## Quick Start

### Sync
```python
from jx3api import JX3API

api = JX3API(token=..., ticket=...)

api.active_calendar(server="梦江南")
```

### Async
```python
from jx3api import AsyncJX3API

async_api = AsyncJX3API(token=..., ticket=...)

await async_api.active_calendar(server="梦江南")
```

## FYI
The codes in this repository are all automatically generated by large language model.

:)
