Metadata-Version: 2.1
Name: async-caches
Version: 0.2.0
Summary: Caching library reimplementing django.core.cache with async support and type hints, inspired by encode/databases.
Home-page: https://github.com/rafalp/async-caches
Author: Rafał Pitoń
Author-email: kontakt@rpiton.com
License: BSD
Description: # Async Caches
        
        [![Build Status](https://travis-ci.org/rafalp/async-caches.svg?branch=master)](https://travis-ci.org/rafalp/async-caches)
        [![Codecov](https://codecov.io/gh/rafalp/async-caches/branch/master/graph/badge.svg)](https://codecov.io/gh/rafalp/async-caches)
        [![PyPI](https://img.shields.io/badge/release-0.2-green.svg)](https://pypi.org/project/async-caches/)
        [![Documentation](https://img.shields.io/badge/documentation-github.io-blue.svg)](https://rafalp.github.io/async-caches/)
        
        Caching library reimplementing [`django.core.cache` API](https://docs.djangoproject.com/en/2.2/topics/cache/#the-low-level-cache-api) with async support and type hints, inspired by [`encode/databases`](https://github.com/encode/databases).
        
        Currently three cache backends are available:
        
        * `dummy` - Dummy cache backend that doesn't cache anything. Used to disable caching in tests!
        * `locmem` - Cache backend that stores data in local memory. Lets you develop and test caching without need for actual cache server.
        * `redis` - Redis cache intended for use in actual deployments.
        
        **Requirements:** Python 3.6+
        **Documentation:** https://rafalp.github.io/async-caches/
        
        
        ## Installation
        
        ```console
        $ pip install async-caches
        ```
        
        
        ## Contributing
        
        Contributions are welcome!
        
        If you've found a bug, got idea, question or just want to share the love, open [GitHub issue](https://github.com/rafalp/async-caches/issues) or pull request!
        
        
        ## Credits and license
        
        This is free software and you are welcome to modify and redistribute it under the conditions described in the license. For the complete license, refer to the LICENSE file.
        
        Parts of software come from [databases](https://github.com/encode/databases/issues) package developed by Tom Christie and contributors and from [Django](https://github.com/django/django) package developed by Django project maintainers and contributors.
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Description-Content-Type: text/markdown
