{"id":21025759,"url":"https://github.com/koderkow/kaggler","last_synced_at":"2025-10-04T20:16:27.711Z","repository":{"id":47225279,"uuid":"397478419","full_name":"KoderKow/kaggler","owner":"KoderKow","description":"R Interface for the Kaggle API","archived":false,"fork":false,"pushed_at":"2023-08-20T20:50:38.000Z","size":532,"stargazers_count":2,"open_issues_count":1,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-12T12:27:16.211Z","etag":null,"topics":["kaggle","r"],"latest_commit_sha":null,"homepage":"https://koderkow.github.io/kaggler/","language":"R","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/KoderKow.png","metadata":{"files":{"readme":"README.Rmd","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-08-18T05:02:53.000Z","updated_at":"2023-11-15T18:45:20.000Z","dependencies_parsed_at":"2024-11-19T11:43:07.391Z","dependency_job_id":"c9684748-fe92-44c9-8545-25fcbf0906c6","html_url":"https://github.com/KoderKow/kaggler","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/KoderKow/kaggler","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KoderKow%2Fkaggler","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KoderKow%2Fkaggler/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KoderKow%2Fkaggler/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KoderKow%2Fkaggler/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/KoderKow","download_url":"https://codeload.github.com/KoderKow/kaggler/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KoderKow%2Fkaggler/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272124786,"owners_count":24877726,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-25T02:00:12.092Z","response_time":1107,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["kaggle","r"],"created_at":"2024-11-19T11:36:29.675Z","updated_at":"2025-10-04T20:16:22.686Z","avatar_url":"https://github.com/KoderKow.png","language":"R","funding_links":[],"categories":[],"sub_categories":[],"readme":"---\noutput: github_document\neditor_options: \n  chunk_output_type: console\n---\n\n\u003c!-- README.md is generated from README.Rmd. Please edit that file --\u003e\n\n---\n\n```{r setup, include = FALSE}\nknitr::opts_chunk$set(\n  collapse = TRUE,\n  comment = \"#\u003e\",\n  fig.path = \"man/figures/README-\",\n  out.width = \"100%\",\n  cache = TRUE\n)\nlibrary(kaggler)\noptions(width = 100)\noptions(tibble.print_min = 5)\noptions(tibble.print_max = 5)\n```\n\n# kaggler \u003cimg src=\"man/figures/logo.png\" width=\"160px\" align=\"right\" /\u003e\n\n\u003e 🏁 An R client for accessing [Kaggle](https://www.kaggle.com)'s API\n\n\u003c!-- badges: start --\u003e\n[![R-CMD-check](https://github.com/KoderKow/kaggler/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/KoderKow/kaggler/actions/workflows/R-CMD-check.yaml)\n\u003c!-- badges: end --\u003e\n\n## Installation\n\nYou can install the dev version of **{kaggler}** from [CRAN](https://github.com/koderkow/kaggler) with:\n\n```{r, eval = FALSE}\n## install kaggler package from github\ndevtools::install_github(\"koderkow/kaggler\")\n```\n\n# API Authorization\n\nAll users must be authenticated to interact with Kaggle’s APIs. To setup your API key refer to the [Get Started](https://koderkow.github.io/kaggler/articles/kaggler.html) guide.\n\n# Interacting with the API\n\nThese will be functions the user can call to have custom control over the returns and interactions with the Kaggle API.\n\nBrowse or search for Kaggle competitions.\n\n```{r complist}\n## look through all competitions (paginated)\ncomps1 \u003c- kgl_competitions_list()\ncomps1\n\n## search by keyword for competitions\nimagecomps \u003c- kgl_competitions_list(search = \"image\")\nimagecomps\n```\n\nYou can look up the datalist for a given Kaggle competition using the API. \n\n```{r}\n## data list for a given competition\nc1_datalist \u003c- kgl_competitions_data_list(\"titanic\")\nc1_datalist\n```\n\nFor a more in-depth walkthrough visit the [Kaggle API](https://koderkow.github.io/kaggler/articles/kaggle-api.html) page.\n\n# Kaggle Flow\n\nThis is an **experimental** and **opinionated** reproducible workflow\nfor working with Kaggle competitions.\n\n``` r\nlibrary(kaggler)\n\nkgl_flow(\"titanic\")\n\n#\u003e • These files will be downloaded:\n#\u003e   - 'gender_submission'\n#\u003e   - 'test'\n#\u003e   - 'train'.\n#\u003e • Downloading 'gender_submission.csv'...\n#\u003e • Downloading 'test.csv'...\n#\u003e • Downloading 'train.csv'...\n```\n\nFor a more in-depth walkthrough visit the [Kaggle\nFlow](https://koderkow.github.io/kaggler/articles/kgl-flow.html) page.\n\n## Note(s)\n\n- The base of this package was cloned from the original at [{kaggler}](https://github.com/mkearney/kaggler). I have decided to take the developers work and continue their amazing development! Major props and recognition goes out to the original developer(s) of this package.\n  - I will be updating all documentation and examples for the README and functions for this package as time goes on\n- The the developers are in no way affiliated with Kaggle.com, and, as such, makes no assurances that there won't be breaking changes to the API at any time\n- Although the developers are not affiliated, it's good practice to be informed, so here is the link to Kaggle's terms of service: https://www.kaggle.com/terms\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkoderkow%2Fkaggler","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkoderkow%2Fkaggler","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkoderkow%2Fkaggler/lists"}