pydytuesday is a Python library that ports some of the functionality of the tidytuesdayR CRAN package to Python. It provides a way to download TidyTuesday datasets hosted on GitHub.
Note! This repo is under construction 🚧 The information below may not be up-to-date!
- Get the most recent Tuesday date: Useful for aligning with TidyTuesday releases.
- List available datasets: Discover available TidyTuesday datasets across years.
- Download datasets: Retrieve individual files or complete datasets.
- Display dataset README: Open the dataset's README in your web browser.
- Check GitHub API rate limits: Monitor your GitHub API usage.
We make extensive use of uv and uv tools to enable command-line scripts without too much managing of virtual environments.
-
Install uv.
-
Install pydytuesday to your commandline by using
uv tool install
uv tool install pydytuesday pydytuesday last-tuesday
Alternatively, you can use uv tool
or uvx
to avoid adding the command to your path.
uv tool pydytuesday last-tuesday
or using uvx:
uvx pydytuesday last-tuesday
Alternatively, you can install the library directly into your environment using pip.
pip install pydytuesday
pydytuesday last-tuesday
Once you have installed the library using uv, you should be able to run your commands from anywhere on your system.
-
Last Tuesday
- Description: Prints the most recent Tuesday date relative to today's date or an optionally provided date.
- Usage:
(The second example passes a specific date argument in YYYY-MM-DD format.)
pydytuesday last-tuesday pydytuesday last-tuesday 2025-03-10
-
TidyTuesday Available
- Description: Lists all available TidyTuesday datasets.
- Usage:
pydytuesday tt-available
-
TidyTuesday Datasets
- Description: Lists datasets for a specific year.
- Usage:
(Example passes the year as an argument.)
pydytuesday tt-datasets 2025
-
Download Specific File
- Description: Downloads a specified file from a TidyTuesday dataset by date.
- Usage:
(The example downloads the file 'data.csv' from the dataset for March 10, 2025.)
pydytuesday tt-download-file 2025-03-10 data.csv
-
Download Dataset Files
- Description: Downloads all or selected files from a TidyTuesday dataset by date.
- Usage:
(The first example downloads all files from the dataset for March 10, 2025. The second example downloads only the specified files.)
pydytuesday tt-download 2025-03-10 pydytuesday tt-download 2025-03-10 data.csv summary.json
-
Display Dataset README
- Description: Opens the README for a TidyTuesday dataset in your default web browser.
- Usage:
(The example opens the README for the dataset from March 10, 2025.)
pydytuesday readme 2025-03-10
-
Check GitHub Rate Limit
- Description: Checks the remaining GitHub API rate limit.
- Usage:
pydytuesday rate-limit-check
Here's a complete example of how to discover, download, and explore TidyTuesday data using the command-line interface:
# 1. Find the most recent Tuesday date
pydytuesday last-tuesday
# Output: 2025-03-11
# 2. List available datasets for a specific year
pydytuesday tt-datasets 2025
# Output: Lists all datasets for 2025 with dates and titles
# 3. Download a specific file from a dataset by date
pydytuesday tt-download-file 2025-03-11 example.csv
# Output: Successfully saved example.csv to /path/to/example.csv
# 4. After downloading, you can read the CSV file using pandas in Python:
import pandas as pd
# Read the downloaded CSV file
df = pd.read_csv("example.csv")
# Display the first few rows
print(df.head())
# Get basic information about the dataset
print(df.info())
# Generate summary statistics
print(df.describe())
# Perform data analysis and visualization
import matplotlib.pyplot as plt
df.plot(kind='bar', x='category', y='value')
plt.title('TidyTuesday Data Analysis')
plt.show()
This workflow demonstrates how to use the command-line tools to discover and download data, and then use pandas to analyze the downloaded data.
You can also use pydytuesday as a Python library directly in your code:
# Option 1: Use pydytuesday to download files
import pydytuesday
# Download all files from a specific week
pydytuesday.get_date('2025-03-18')
# This will save all files from the 2025-03-18 dataset to your current directory
# Download files from a specific week by year and week number
pydytuesday.get_week(2025, 3)
# This will download all files from the 3rd week of 2025
# Option 2: Read directly from GitHub
import pandas as pd
# Read a CSV file directly from GitHub without downloading
palmtrees = pd.read_csv('https://raw.githubusercontent.com/rfordatascience/tidytuesday/main/data/2025/2025-03-18/palmtrees.csv')
# Analyze the data
print(palmtrees.head())
This workflow demonstrates how to use pydytuesday as a Python library to download data or read it directly from GitHub.
Contributions are welcome! Here's how you can help improve PidyTuesday:
-
Fork the Repository:
Click on the "Fork" button at the top right of the repository page and create your own copy. -
Clone Your Fork:
git clone https://github.com/your-username/PidyTuesday.git cd PidyTuesday
-
Create a New Branch:
Start a new feature or bugfix branch:git checkout -b feature/your-feature-name
-
Make Your Changes:
Add new features, fix bugs, or improve documentation. Ensure your code adheres to the project's style guidelines. -
Commit Your Changes:
Write clear commit messages that describe your changes:git add . git commit -m "Description of your changes"
-
Push to Your Fork:
git push origin feature/your-feature-name
-
Submit a Pull Request:
Open a pull request on the main repository. Provide a detailed description of your changes and reference any issues your PR addresses.
For larger contributions, consider discussing your ideas by opening an issue first so that we can provide guidance before you start coding.
This project is licensed under MIT as per the LICENSE file.