Socket
Book a DemoInstallSign in
Socket

django-favicon

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

django-favicon

Reusable django app to handle /favicon.ico for your site

pipPyPI
Version
0.1.2
Maintainers
1

django-favicon

A reusable app to add simple favicon.ico handling for your site.

Installation

Install "django-favicon" using pip or easy_install::

pip install django-favicon

Add "favicon" to your INSTALLED_APPS in settings.py::

  INSTALLED_APPS = (
      ...
      'favicon',
  )

Add favicon URL patterns to urls.py::

  urlpatterns = patterns('',
      ...
      url(r'^', include('favicon.urls')),
  )

Usage

Put favicon.ico into your STATIC_ROOT. and you good to go, /favicon.ico will automatically redirect to /static/favicon.ico if your STATIC_URL = '/static/'.

Otherwise you can set a custom path to your favicon using FAVICON_PATH setting. For example::

 FAVICON_PATH = STATIC_URL + 'images/favicon.png'

Running the Tests

You can run the tests with via::

python setup.py test

or::

python runtests.py

Contribute

PyPI (Downloads) https://pypi.python.org/pypi/django-favicon Official repository https://github.com/littlepea/django-favicon Issue tracker https://github.com/littlepea/django-favicon/issues

Credits

  • Developed and maintained under supervision of Evgeny Demchenko_

.. _Evgeny Demchenko: https://github.com/littlepea

FAQs

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