Metadata-Version: 2.1
Name: thumbor-icon-handler
Version: 0.0.2
Summary: Thumbor add serve request for favicon.ico handler.
Home-page: https://github.com/jjonline/thumbor-icon-handler
Author: Jea Yang
Author-email: jjonline@jjonline.cn
Maintainer: Jea Yang
Maintainer-email: jjonline@jjonline.cn
License: Apache-2.0 license
Keywords: thumbor,icon,favicon.ico,imaging,thumbnail,imagemagick
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.7
Description-Content-Type: text/x-rst
License-File: LICENSE

thumbor-icon-handler
====================

A thumbor handler for serve favicon.icon request

Installation
------------

::

   pip install thumbor-icon-handler

Contribution
============

You can make a pull requests
`HERE <https://github.com/jjonline/thumbor-gcs/pulls>`__, thank you for
your contribution.

# Configuration
===============

``HANDLER_LISTS`` settings
--------------------------

::

   HANDLER_LISTS = [
     'thumbor.handler_lists.healthcheck',
     'thumbor.handler_lists.upload',
     'thumbor.handler_lists.blacklist',
     # Add this config
     'thumbor_icon_handler.icon',
   ]

Optionally specify a local ``favicon.ico`` file
-----------------------------------------------

You can use the ``favicon.ico`` file in the local file system, or you
can ignore this configuration item and use the ``favicon.ico`` file in
the Loader

::

   # specify your local filesystem favicon.ico file full path
   # for example /srv/file/favicon.ico
   ICON_IMAGE_LOCAL_PATH = ''


