Metadata-Version: 1.0
Name: django-url2png
Version: 0.2
Summary: Make web page screen shots using the url2png service.
Home-page: http://callowayproject.com/
Author: Calloway Project
Author-email: webmaster@callowayproject.com
License: UNKNOWN
Description: ===============
        Getting Started
        ===============
        
        #. Install it with ``pip``::
        
               pip install django-url2png
        
        #. Configure settings: API_KEY, SECRET_KEY
        
        #. Optionally set optional defaults for the filter, especially THUMBNAIL_MAX_WIDTH
        
        #. Use it in a template::
        
               {% load url2png_tags %}
               <img src="{{ url|url2png:400 }}" width="400" height="{% get_height 400 %}"/>
        
           This uses the configured ``THUMBNAIL_MAX_WIDTH``, which is set to ``300``::
        
               {% load url2png_tags %}
               <img src="{{ url|url2png }}" width="300" height="{% get_height %}"/>
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Framework :: Django
