Metadata-Version: 2.1
Name: YTThumb
Version: 1.4.1
Summary: YouTube video thumbnail download
Home-page: UNKNOWN
Author: Fayas Noushad
License: MIT
Project-URL: Tracker, https://github.com/FayasNoushad/Youtube-Video-Thumbnail/issues
Project-URL: Source, https://github.com/FayasNoushad/Youtube-Video-Thumbnail
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# YouTube Video Thumbnail

```py
import ytthumb


# Get Thumbnail
thumbnail = ytthumb.thumbnail('https://youtu.be/rokGy0huYEA')
thumbnail = ytthumb.thumbnail(
    video="https://youtu.be/rokGy0huYEA",  # You can alse add id
    quality="sd"  # Not required
)
print(thumbnail)
# => https://img.youtube.com/vi/rokGy0huYEA/sddedault.jpg

# Available Qualities
print(ytthumb.qualities())
# => ["sd", "mq", "hq", "maxres"]

# Download Thumbnail
ytthumb.download_thumbnail(
    video,
    name='thumbnail.jpg',  # Not required
    quality='sd'  # Not required
)
# => Download thumbnail in 'thumbnail.jpg'
```

## Installation

```
pip install YTThumb
```

## Features

- YouTube video link/id to thumbnail
  - Quality select option
- YouTube video link/id to download thumbnail
  - Quality select option
  - Custom name


