Metadata-Version: 2.1
Name: recipe-caching
Version: 0.6.0
Summary: caching for recipe library
Home-page: https://github.com/juiceinc/recipe_caching
Author: Chris Gemignani
Author-email: chris.gemignani@juiceanalytics.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Requires-Dist: dogpile.cache
Requires-Dist: recipe (>=0.7.2)
Requires-Dist: redis
Requires-Dist: six
Requires-Dist: sqlalchemy
Requires-Dist: structlog

========
Overview
========

.. start-badges

.. |downloads| image:: https://img.shields.io/pypi/dm/recipe.svg
    :alt: PyPI Package monthly downloads
    :target: https://pypi.python.org/pypi/recipe

.. |wheel| image:: https://img.shields.io/pypi/wheel/recipe.svg
    :alt: PyPI Wheel
    :target: https://pypi.python.org/pypi/recipe

.. |supported-versions| image:: https://img.shields.io/pypi/pyversions/recipe.svg
    :alt: Supported versions
    :target: https://pypi.python.org/pypi/recipe

.. |supported-implementations| image:: https://img.shields.io/pypi/implementation/recipe.svg
    :alt: Supported implementations
    :target: https://pypi.python.org/pypi/recipe


.. end-badges

Recipe_Caching is an MIT licensed caching extension for the recipe querying
library, written in Python. It caches SQL query results keyed by the SQL query.
By providing a custom oven and a recipe extension. Using it requires defining
a ``dogpile.cache`` cache region, using the caching oven, and telling the recipe
to use the caching extension.

Installation
============

::

    pip install recipe_caching

Documentation
=============

https://recipe_caching.readthedocs.io/

Development
===========

To run the all tests run::

    py.test


