Release date: 7/17/23
- Fix dataset download bug with locale
Release date: 7/07/23
- Resumable uploads
- Retry some failed requests
- Flag
-y
to delete model/instance/version without confirmation
Release date: 7/06/23
- Confirmation for deleting a model, instance or version
- Merge changes from 1.5.14 and 1.5.15
Release date: 6/30/23
- Add missing licenses for datasets
- Re-add option to pass dataset with
-d
- Download / list files for a specific version of a dataset
- Documentation improvements
Release date: 6/29/23
- Show the full error message from the API
- Improve and fix documentation
- Fix kernel's data sources bug, and add the model data source to push/pull
- Implement resumable downloads
- Fix unreachable code bug
- Make some arguments required
- Add enable_tpu to kernel's push/pull
Release date: 6/12/23
- Add endpoint to get a modelInstance
- Simplify the modelInstanceVersion creation
- Fix Model files zipping
Release date: 6/07/23
- Add Models endpoints
Release date: 2/27/23
- Add ability to add a model to a kernel
Release date: 03/12/21
- No changes
Release date: 03/12/21
- Add support for non-ASCII characters for kernels.
Release date: 11/30/20
- Remove dependency on slugify.
Release date: 10/21/20
- Drop version restriction on urllib3 in setup.py.
Release date: 09/03/20
- No user-facing changes
Release date: 8/31/20
- Add ability to specify the kernel docker image pinning type
- Kernels have internet enabled by default
- Various competitions fixes
Release date: 9/19/19
- Downloading all files for a competition downloads a zip instead of individual files
Release date: 8/30/19
- Add vote count and usability rating to datasets listing
- Add min and max dataset size filters to datasets listing
- Add additional information to dataset metadata API
- Allow updating dataset metdata
Release date: 5/28/19
- Make kernels init more friendly
- Make directories if needed for kernels output
Release date: 2/20/19
- Bump urllib3 version
Release date: 1/28/19
- Don't error on encoding errors when printing tables
- Exit with error code when an exception is caught
Release date: 12/5/18
- Add missing cli option for dataset subfolders
Release date: 12/5/18
- Allow custom ca_cert files
- Support uplodaing datasets with subfolders
- Fix kaggle.json permissions warning
Release date: 10/19/18
- Update API to work with new competitions submissions backend. This change will force old API clients to update.
- Update error message when config file is not found.
Release date: 8/28/18
- Fix host
Release date: 8/28/18
- Make dataset version
-p
argument actually optinal - Don't require the
resources
field when updating a dataset - Don't automatically unzip datasets
- Add an unzip option for dataset downloads
- Add validation for kernel title and slug length
- Give a warning if kernel title does not resolve to the specified slug
- Show kernel version number after pushing
- Respect
code_file
value in kernel metadata when pulling kernels
Release date: 8/7/18
- Allow setting config values through environmental variables
Release date: 8/1/18
- Add error if dataset metadata repeats files
Release date: 7/30/18
- Fix issue with reading kernel metadata
Release date: 7/30/18
- Add more competitions list options
- Add more datasets list options
- Add a couple more fields to kernels list display
- Add support for kernel and dataset ID's
- Allow generating metadata for an existing dataset
- Fix issue with downloading from datasets whose titles don't match their slugs
- Use kernel slug as filename for kernel output
- Make upload and download directory default to current working directory
- Use a default username on downloading kernel or dataset data if none is specified
- Support extended data types on datasets
- Stop requiring
-c
,-d
, and-k
arguments - Don't require
resources
field in dataset metadata
Release date: 7/20/18
- Validate dataset slug and title length before uploading
- Fix issue with dataset metadata file detection
- Cleaned up KeyboardInterrupt errors
- Validate all specified files in a dataset exist prior to uploading
- Make ApiExceptions (slightly) less ugly
Release date: 7/20/18
- Add python 3.7 compatibility
Release date: 7/19/18
- Add kernels support ** List and search kernels ** Push kernels code ** Pull kernels code ** Download kernel output ** Get latest kernel run status
Release date: 6/25/18
- Allow setting a
'KAGGLE_CONFIG_DIR'
environmental token - Return metadata file after creating
- Alert users that dataset creation takes time
- Fix other invalid tags check
Release date: 6/12/18
- Improve version check
- Fix invalid tags check
Release date: 6/10/18
- Restrict urllib3's version due to requests dependency problem
Release date: 6/9/18
- Fix bug with competitions submissions.
Release date: 6/8/18
- Improve error message for closed competitions
- Remove stacktrace on errors
- Print any invalid tags
- Warn if there are no competition files to download
- Implement resumable uploads
- Add subtitle metadata to dataset uploads
- Add progress bars for uploads and downloads
- Add command for downloading competitions leaderboard
- Add command for viewing the top of the leaderboard
Release date: 5/18/18
- Add option to delete all previous dataset versions
Release date: 5/18/18
- Add aliases for subcommands (ex.
kaggle c
is the same thing askaggle competitions
) - Add version command
- Show full download path for files
- Remove file size limitation from uploads
Release date: 5/7/18
- Give the option to add tags to datasets.
- Known limitiation - you cannot delete tags through the API. Those changes must be done through the website.
Release date: 5/4/18
- Fix schema declaration in dataset resources
Release date: 4/30/18
- Rename
columns
tofields
Release date: 4/26/18
- Fix UnicodeEncodeError for certain datasets
- Include Swagger yaml and config files
Release date: 4/24/18
- Fix bug with column metadata
Release date: 4/24/18
- Give the option to specify a schema for uploaded datasets
- Give the option to set the dataset description during updates
Release date: 4/19/18
- Give the option to set dataset file descriptions
- Give the option to not convert tabular datasets to csv
Release date: 4/18/18
- Give the option to set the dataset description during creation
Release date: 4/17/18
- Issue #5 - Reformat code for consistency and to align with Google's python coding style. Most of the changes are cosmetic, but most cases of
camelCasing
other than class names have been changed tosnake_case
. This is a breaking change for anyone directly using the python code rather than simply using the command line.