kaggle-config
manages Kaggle CLI configuration settings
TLDR
View current configuration
$ kaggle config view
Set the default competition$ kaggle config set -n competition -v [competition_name]
Set the default download path$ kaggle config set -n path -v [/path/to/download/folder]
Set a proxy for HTTP requests$ kaggle config set -n proxy -v [http://proxy:port]
Unset a configuration value$ kaggle config unset -n [name]
SYNOPSIS
kaggle config subcommand [options]
DESCRIPTION
kaggle config manages Kaggle CLI configuration settings. Available configuration parameters are competition (default competition URL suffix), path (default download folder, defaults to current working directory), and proxy (HTTP request proxy). Configuration is stored in ~/.kaggle/kaggle.json.
PARAMETERS
set -n name -v value
Set a configuration option. Valid names: competition, path, proxy.view
Display current configuration values.unset -n name
Remove a configuration option, reverting to default behavior.-n NAME, --name NAME
Name of the configuration parameter.-v VALUE, --value VALUE
Value of the configuration parameter.
SEE ALSO
kaggle(1)
