Metadata-Version: 1.1
Name: django-youtube-thumbnail
Version: 1.0.0
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
Description: 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' %}">
        
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
