当前位置: 首页 > 工具软件 > Kaggle > 使用案例 >

kaggle api 的使用

萧嘉禧
2023-12-01

https://www.jianshu.com/p/7da54c564c55

0. 注册及安装

  • pip install kaggle:
  • 注册 https://www.kaggle.com 账号
  • 【My Account】=> 【Create New API Token】
    • 会自动下载一个 kaggle.json 的json文件;
      • username/key
    • 将其移动到 home 目录下的 .kaggle 文件夹下;

1. 常用 api

  • 列出 health 类别下的所有比赛:kaggle competitions list -s health
  • 下载 <competition_name>下的Data中所有文件,指定下载路径<path>
    • -c:指定比赛名
      • -f:下载指定文件;
    • -p:指定下载到的本地路径
    • kaggle competitions download -c dogs-vs-cats
    • kaggle competitions download -c diabetic-retinopathy-detection -f trainLabels.csv.zip -p /Users/httbser/Datasets/kaggle/DR
 类似资料: