Metadata-Version: 1.1
Name: django-cache-decorator
Version: 0.4
Summary: Easily add caching to functions within a django project.
Home-page: https://github.com/rchrd2/django-cache-decorator/
Author: Richard Caceres
Author-email: me@rchrd.net
License: MIT
Download-URL: https://github.com/rchrd2/django-cache-decorator/tarball/0.4
Description: Easily add caching to functions within a django project.
        
        
        ## Installation from PyPi
        
        ```
        pip install django-cache-decorator
        ```
        
        
        ## Installation from Github
        
        ```
        pip install -e git+https://github.com/rchrd2/django-cache-decorator.git#egg=django-cache-decorator
        ```
         
        
        ## Example usage
        
        ```
        @django_cache_decorator(time=0)
        def geocodeGooglePlaceTextJson(location):
            ...
        ```
        
        
        ## Running tests
        
        ```
        python -m unittest tests
        ```
        
        
        ## Credits
        
        Built off of example code from:
        http://james.lin.net.nz/2011/09/08/python-decorator-caching-your-functions/
        
        Further development and packaging by Richard Caceres (@rchrd2)
        
        
        ## Release log
        
        - 0.4 - Update project for PyPi (pip install django-cache-decorator)!
        - 0.3 - another bug fix for unicode params
        - 0.2 - bug fix for unicode params
        - 0.1 - initial release
Keywords: django,caching,decorator
Platform: UNKNOWN
