Metadata-Version: 2.1
Name: jndataset-up
Version: 0.1.0
Summary: Dataset Uploader SDK
Home-page: https://github.com/***/dataset-up
Author: 
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: tqdm
Requires-Dist: requests
Requires-Dist: click
Requires-Dist: psutil
Requires-Dist: pytz
Requires-Dist: filelock

# Dataset Uploader SDK

用于上传文件和文件夹到数据集平台的 SDK。

## 安装

```bash
pip install dataset-up

使用

# 上传单个文件
dataset-up upload-file --dataset-id YOUR_DATASET_ID --source-path path/to/file.txt

# 上传文件夹
dataset-up upload-folder --dataset-id YOUR_DATASET_ID --source-path path/to/folder

---

## 停止本机当前真正运行的上传任务
dataset-up stop-running-uploading-process

## 5. 构建与安装

```bash
# 构建
python setup.py sdist bdist_wheel

# 安装到本地
pip install -e .

# 或者安装打包后的版本
pip install dist/dataset_up-0.1.0.tar.gz
6. 使用命令行调用
bash
# 上传文件
dataset-up upload-file --dataset-id "8046425445713243579" \
                         --source-path "D:\\迅雷下载\\cudnn-windows-x86_64-8.9.2.26_cuda11-archive.zip" \
                         --target-path "/kkk17"

# 上传文件夹
dataset-up upload-folder --dataset-id "8046425445713243579"  --version "master"  --source-path "D:\\机器学习材料安装包" --target-path "/kkk16"

