Downloading Datasets from Kaggle

Configuring the kaggle.json API Key for Unix-like Systems

Pat Mejia
2 min readOct 26, 2023
Prompt: Photo of a terminal screen displaying the command ‘pip install kaggle’, indicating the installation of the Kaggle library.

Ensuring the security of the `kaggle.json` API key and configuring Kaggle to download datasets are crucial steps. To assist you in this process, we’ve outlined the necessary actions in concise code snippets:

  1. Prepare Your Environment
    — Install the Kaggle library:
pip install kaggle

— Create the Kaggle directory:

mkdir ~/.kaggle

2. Authenticate with Kaggle
— After obtaining your `kaggle.json` file from the Kaggle website, move it to the appropriate directory. For instance, if you’ve downloaded it to the `Downloads` folder:

mv ~/Downloads/kaggle.json ~/.kaggle/kaggle.json

3. Secure Your API Key
— It’s crucial to ensure that your Kaggle API key is not readable by others on your system. Set the appropriate permissions for your `kaggle.json` file to prevent potential security risks:

chmod 600 ~/.kaggle/kaggle.json

Note: Skipping this step might result in a warning when trying to download datasets from Kaggle.

4. Test: Explore Kaggle Competitions
— To view the list of available Kaggle competitions, run:

kaggle competitions list

—Output:

Console Output Demonstrating the Listing of Available Kaggle Competitions

By diligently following these steps, you’ll have your Kaggle environment secured and primed for dataset downloads.

The above steps are tailored for macOS and Unix-like systems. If you’re using a different operating system, some commands might vary.

Kaggle is a treasure trove for data enthusiasts, offering a myriad of datasets for diverse projects. Dive in and explore!

Summary

pip install kaggle
mkdir ~/.kaggle
mv /path/to/kaggle.json ~/.kaggle/kaggle.json
chmod 600 ~/.kaggle/kaggle.json
kaggle competitions list

References

Kaggle/kaggle-api: Official Kaggle API (github.com)

Sign up to discover human stories that deepen your understanding of the world.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

Pat Mejia
Pat Mejia

Written by Pat Mejia

My focus 🔬 is on data, systems, and pipelines to find connections between food, soil, and microbiology 🦠

No responses yet

Write a response