Socket
Book a DemoInstallSign in
Socket

github.com/zzzsochi/Flask-Gravatar

Package Overview
Dependencies
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

github.com/zzzsochi/Flask-Gravatar

Source
Go
Version
v0.5.0
Version published
Created
Source

================ Flask Gravatar

.. image:: https://img.shields.io/travis/zzzsochi/Flask-Gravatar.svg :target: https://travis-ci.org/zzzsochi/Flask-Gravatar

.. image:: https://img.shields.io/coveralls/zzzsochi/Flask-Gravatar.svg :target: https://coveralls.io/r/zzzsochi/Flask-Gravatar

.. image:: https://img.shields.io/github/tag/zzzsochi/Flask-Gravatar.svg :target: https://github.com/zzzsochi/Flask-Gravatar/releases

.. image:: https://img.shields.io/pypi/dm/Flask-Gravatar.svg :target: https://pypi.python.org/pypi/Flask-Gravatar

.. image:: https://img.shields.io/github/license/zzzsochi/Flask-Gravatar.svg :target: https://github.com/zzzsochi/Flask-Gravatar/blob/master/LICENSE

About

This is small and simple integration gravatar_ into flask_.

.. _flask: http://flask.pocoo.org .. _gravatar: http://gravatar.com

Installation

Flask-Gravatar is on PyPI so all you need is: ::

pip install Flask-Gravatar

Documentation

Initialize with flask application and default parameters: ::

gravatar = Gravatar(app,
                    size=100,
                    rating='g',
                    default='retro',
                    force_default=False,
                    use_ssl=False,
                    base_url=None)

Then in your template: ::

{{ 'zzz.sochi@gmail.com' | gravatar }}

Bigger and adult: ::

{{ 'zzz.sochi@gmail.com' | gravatar(size=200, rating='x') }}

Parameters

All parameters are described in gravatar documentation_.

.. _gravatar documentation: http://gravatar.com/site/implement/images

Testing

Running the test suite is as simple as: ::

python setup.py test

or, to also show code coverage: ::

./run-tests.sh

FAQs

Package last updated on 05 Jan 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts