Metadata-Version: 2.4
Name: sl-pos2-api
Version: 0.2.9
Summary: Shopline POS2 API SDK
Home-page: https://github.com/zzzpeifeng/sl-pos2-api
Author: Your Name
Author-email: your.email@example.com
Classifier: Development Status :: 3 - Alpha
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
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.25.0
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# SHOPLINE POS2.0 API 工具

## 安装

```bash
pip install sl-pos2-api
```

## 使用

```python
from sl_pos2_api_tool import OrderApi

order_api = OrderApi(
    base_url="https://pos2-api.shoplineapp.com",
    host="pos2-api.shoplineapp.com",
    uid="123456",
    device_info="device_info",
    ticket="ticket",
)

order_api.hello()
```
