Metadata-Version: 2.1
Name: linkerbot
Version: 0.1.5
Summary: A simple SDK example with two methods
Home-page: https://github.com/yourusername/linkerbot-sdk
Author: LinkerBot
Author-email: 2424028621@example.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.25.1
Requires-Dist: tqdm>=4.65.0

# LinkerBot Python SDK

A simple Python SDK example with two utility methods.

## Installation

```bash
pip install linkerbot-sdk
```

## Usage

```python
from linkerbot_sdk import LinkerBot
bot = LinkerBot()
# 下载数据集
print("开始下载数据集...")
result = bot.download_dataset(dataset="graspnet/objects",cache_dir="../test")
print(f"下载完成，文件保存在: {result}")
```

## Features

- Simple arithmetic operations
- Greeting message generation

## License

This project is licensed under the MIT License.
