Skip to main content

A Python CLI tool to interact with the YouTube API and mainly to manage and sort playlists

Project description

ytplay

A Python CLI tool to interact with the YouTube API and manage playlist information. Created to sort playlists by video time, but it has more stuff too.

Installation

uv tool install ytplay
ytplay playlist sort
# or
uvx ytplay playlist sort

Setup

Set Up Google API Credentials

  1. Create a Google Cloud Project:

  2. Enable YouTube Data API v3:

    • Go to APIs & Services > Library
    • Search for "YouTube Data API v3" and enable it
  3. Create OAuth 2.0 Credentials:

    • Go to APIs & Services > Credentials
    • Create OAuth client ID (Desktop application)
    • Download the JSON file and rename it to client_secrets.json
    • Use ytplay auth config add /path/to/client_secrets.json to copy it to the config directory
  4. Add Test User (Important):

    • Go to APIs & Services > OAuth consent screen
    • Add your Gmail address as a test user

Configuration

The tool supports flexible configuration through environment variables and command-line options:

File Locations

Default locations:

  • Config directory: Platform-specific application data directory:
    • Windows: %APPDATA%\ytplay\ (e.g., C:\Users\Username\AppData\Roaming\ytplay\)
    • Linux: ~/.config/ytplay/ (or $XDG_CONFIG_HOME/ytplay/ if set)
    • macOS: ~/.config/ytplay/ (or $XDG_CONFIG_HOME/ytplay/ if set)
  • Client secrets: <config_dir>/client_secrets.json
  • Token file: <config_dir>/youtube.dat

Environment Variables:

export YTPLAY_CONFIG_DIR="/path/to/config"              # Set config directory
export YTPLAY_CLIENT_SECRETS="/path/to/secrets.json"    # Set client secrets path
export YTPLAY_TOKEN_FILE="/path/to/token.dat"           # Set token file path

Command-line Options:

ytplay --config-dir /path/to/config playlist list           # Set config directory
ytplay --client-secrets /path/to/secrets.json auth login    # Set client secrets path
ytplay --token-file /path/to/token.dat auth status         # Set token file path

Check Current Configuration:

ytplay auth config show    # Show current file locations and status

Add Configuration Files:

ytplay auth config add /path/to/client_secrets.json    # Copy client secrets to config directory
ytplay auth config add /path/to/file.json --name custom.json  # Copy with custom name
ytplay auth config add /path/to/file.json --force      # Overwrite existing file

Configuration Priority:

  1. Command-line options (highest priority)
  2. Environment variables
  3. Default locations (lowest priority)

Troubleshooting

Error: "client_secrets.json not found"

  • Make sure you've downloaded and renamed the OAuth credentials file
  • Verify it's placed in the config/ folder: config/client_secrets.json

Error: "Access blocked: This app's request is invalid"

  • Make sure you've added your Gmail address as a test user in the OAuth consent screen
  • Verify you're using the same Google account that you added as a test user

Error: "The OAuth client was not found"

  • Double-check that you've enabled the YouTube Data API v3 in your Google Cloud project
  • Make sure you're using the correct Google Cloud project

[!NOTE]

  • API Quota Limits: The YouTube Data API v3 has daily quota limits (10,000 units per day for free projects). Large playlists or frequent usage may hit these limits.

Watch Later Playlist: Cannot access or manage the "Watch Later" playlist as it's not accessible via the YouTube API. For that you can pray and use a browser script or extension.

Playlist limits: A playlist can have a maximum of 5,000 videos AFAIK.

Usage

Quick Start

# Authenticate with YouTube
ytplay auth login --force

# List all your playlists
ytplay playlist list

# Get detailed info about a playlist
ytplay playlist info PLAYLIST_ID_HERE

# List videos with durations 
ytplay playlist videos PLAYLIST_ID_HERE --durations

# Create a sorted playlist
ytplay playlist sort PLAYLIST_ID_HERE --sort-by duration --reverse

Command Reference

Authentication:

ytplay auth login                    # Authenticate with YouTube
ytplay auth login --force            # Force reauthentication  
ytplay auth status                   # Check authentication status
ytplay auth logout                   # Remove stored credentials
ytplay auth config show             # Show current configuration paths
ytplay auth config add <path>       # Copy configuration file to config directory

Playlist Management:

ytplay playlist list                 # List all your playlists
ytplay playlist info [PLAYLIST_ID]  # Get detailed playlist info
ytplay playlist videos [PLAYLIST_ID]         # List videos in playlist
ytplay playlist videos [PLAYLIST_ID] -d     # List videos with durations
ytplay playlist sort [PLAYLIST_ID]  # Create sorted playlist copy
ytplay playlist delete [PLAYLIST_ID]        # Delete a playlist

Cache Management:

ytplay cache info                    # Show cache statistics
ytplay cache clear                   # Clear all cached data
ytplay cache clear --type videos    # Clear specific cache type

Command Options

Common Options:

  • --output/-o FILE: Save output to file
  • --format/-f FORMAT: Choose output format (text/json)
  • --no-progress: Disable progress bars
  • --no-cache: Skip cache and fetch fresh data

Sort Options:

  • --sort-by/-s CRITERIA: Sort by upload_date, duration, title, channel, or position
  • --reverse/-r: Sort in descending order
  • --title/-t TITLE: Custom title for sorted playlist
  • --privacy/-p LEVEL: Set privacy (private/public/unlisted)

Examples:

# Interactive playlist selection (if PLAYLIST_ID omitted)
ytplay playlist videos

# Save playlist info as JSON
ytplay playlist info PLxxx --output playlist.json --format json

# Create reverse-sorted playlist by duration
ytplay playlist sort PLxxx --sort-by duration --reverse --title "My Sorted Playlist"

# List videos with durations, skip cache
ytplay playlist videos PLxxx --durations --no-cache

Project Structure

The project is organized into a clean, modular structure:

sort-wl/
├── main.py                    # Entry point for the CLI application
├── src/                       # Main source code
│   ├── cli/                   # CLI interface and commands
│   │   ├── __init__.py
│   │   └── commands.py        # Click command definitions
│   ├── core/                  # Core business logic
│   │   ├── __init__.py
│   │   ├── auth.py           # YouTube API authentication
│   │   ├── cache.py          # Cache management system
│   │   ├── youtube_api.py    # YouTube API functions
│   │   └── sorting.py        # Video sorting utilities
│   ├── types/                 # Type definitions
│   │   ├── __init__.py
│   │   └── youtube.py        # YouTube API type definitions
│   ├── output/                # Output formatting
│   │   ├── __init__.py
│   │   └── formatters.py     # Display and file output functions
│   ├── config.py             # Configuration and paths
│   └── __init__.py
└── README.md

Overengineered for sure but whtv thats what happens with vibe coding.

TODO

  • Make sorting resumable

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ytplay-1.1.1.tar.gz (41.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ytplay-1.1.1-py3-none-any.whl (35.1 kB view details)

Uploaded Python 3

File details

Details for the file ytplay-1.1.1.tar.gz.

File metadata

  • Download URL: ytplay-1.1.1.tar.gz
  • Upload date:
  • Size: 41.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.7.20

File hashes

Hashes for ytplay-1.1.1.tar.gz
Algorithm Hash digest
SHA256 b72412404d7ee834ff44ae870c9f97439fe46f16f73b0265f61d2573687e0dff
MD5 af9d314d51fafa73f35b49a6ede66b39
BLAKE2b-256 fc140e3123a6e243ac78024a031df1d205ec9c456c6fd6517df3df574cb28354

See more details on using hashes here.

File details

Details for the file ytplay-1.1.1-py3-none-any.whl.

File metadata

  • Download URL: ytplay-1.1.1-py3-none-any.whl
  • Upload date:
  • Size: 35.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.7.20

File hashes

Hashes for ytplay-1.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 4e45e7a5da09aac8446bfce805c3e3f6f193b1fc0b71d8e289c741aae5e16d15
MD5 808892f7d12187d925b6bdf9b6ad0071
BLAKE2b-256 c69ed9cb2b78802a04042b9340af52bd21058e19630371d1eded47b79cc2b49f

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page