Metadata-Version: 1.0
Name: Flask-Gravatar
Version: 0.2.1
Summary: Small extension for Flask to make using Gravatar easy
Home-page: http://www.python.org/pypi/Flask-Gravatar/
Author: Zelenyak Aleksandr aka ZZZ
Author-email: zzz.sochi@gmail.com
License: BSD
Description: 
        Flask Gravatar
        ==============
        
        .. module:: flaskext.gravatar
        
        This is small and simple integration `gravatar`_ into `flask`_.
        
        .. _flask: http://flask.pocoo.org
        .. _gravatar: http://gravatar.com
        
        Installation
        ------------
        
        Install the extension with one of the following commands:
        ::
        
            $ easy_install Flask-Gravatar
        
        or alternatively if you have pip installed:
        ::
        
            $ pip install Flask-Gravatar
        
        How to Use
        ----------
        
        Initialize with flask application and default parameters:
        ::
        
            gravatar = Gravatar(app,
                                size=100,
                                rating='g',
                                default='retro',
                                force_default=False,
                                force_lower=False)
        
        Then in your template:
        ::
        
            {{ 'zzz.sochi@gmail.com' | gravatar }}
        
        Bigger and adult:
        ::
        
            {{ 'zzz.sochi@gmail.com' | gravatar(size=200, rating='x') }}
        
        Patameters
        ++++++++++
        
        All parameters are described in `gravatar documentation`_.
        
        .. _gravatar documentation:  http://gravatar.com/site/implement/images
        
        
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
