Metadata-Version: 2.0
Name: django-youtube-thumbnail
Version: 1.0.1
Summary: Quickly pull the highest resolution thumbnail image available for a YouTube video.
Home-page: https://github.com/gsmke/django-youtube-thumbnail
Author: Ryan Senkbeil
Author-email: ryan.senkbeil@gsdesign.com
License: BSD
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Internet :: WWW/HTTP
Requires-Dist: django-classy-tags (>=0.6.2,<0.7)
Requires-Dist: pafy (>=0.3.74,<0.4)
Requires-Dist: six

django-youtube-thumbnail
========================

Quickly pull the highest resolution thumbnail image available for a YouTube video.

Quick Start
-----------

1. Install the package from pypi:

    .. code-block:: bash

        pip install django-youtube-thumbnail

2. Add "youtube_thumbnail" your INSTALLED_APPS:

    .. code-block:: python

        INSTALLED_APPS = (
            ...
            'youtube_thumbnail',
        )

3. Use the provided template tag to get the thumbnail

    .. code-block:: html

        {% load youtube_thumbnail %}
        <img src="{% youtube_thumbnail_url 'https://www.youtube.com/watch?v=dQw4w9WgXcQ' %}">


