Skip to main content

YouTube video thumbnail downloader

Project description

YouTube Video Thumbnail

A simple youtube video thumbnail downloader with more qualities via youtube video link or id.

Installation

pip install YTThumb

Usage

Get Thumbnail

import ytthumb

video = 'https://youtu.be/rokGy0huYEA'  # link/id

# Basic Usage
print(ytthumb.thumbnail(video))
# => returns thumbnail link

# Advanced Usage
thumbnail = ytthumb.thumbnail(
    video=video,
    quality="sd"  # Not required
)
print(thumbnail)
# returns thumbnail link

Get Qualities

import ytthumb

print(ytthumb.qualities())  # json=True (default)
# returns list of qualities with full form as json

print(ytthumb.qualities(json=False))
# returns list of qualities as list

Download Thumbnail

import ytthumb

ytthumb.download_thumbnail(
    video='https://youtu.be/rokGy0huYEA',
    name='thumbnail.jpg',  # Not required
    quality='sd'  # Not required
)
# Download thumbnail in 'thumbnail.jpg'

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

YTThumb-1.4.6.tar.gz (3.1 kB view hashes)

Uploaded Source

Built Distribution

YTThumb-1.4.6-py3-none-any.whl (3.2 kB view hashes)

Uploaded Python 3

Supported by

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