Metadata-Version: 1.1
Name: aiomcache
Version: 0.1
Summary: Minimal pure python memcached client
Home-page: https://github.com/aio-libs/aiomcache/
Author: Nikolay Kim, KeepSafe
Author-email: fafhrd91@gmail.com
License: BSD
Description: memcached client for asyncio
        ============================
        
        asyncio (PEP 3156) library to work with memcached.
        
        .. image:: https://travis-ci.org/aio-libs/aiomcache.svg?branch=master
           :target: https://travis-ci.org/aio-libs/aiomcache
        
        
        Requirements
        ------------
        
        - Python >= 3.3
        - asyncio https://pypi.python.org/pypi/asyncio/
        
        
        Getting started
        ---------------
        
        The API looks very similar to the other memcache clients::
        
            import aiomcache
            mc = aiomcache.Client("127.0.0.1", 11211, pool_size)
            yield from mc.set(b"some_key", b"Some value")
            value = yield from mc.get(b"some_key")
            values = yield from mc.multi_get(b"some_key")
            yield from mc.delete(b"another_key")
        
        CHANGES
        =======
        
        0.1 (06-18-2014)
        ----------------
        
        - Initial release
Platform: UNKNOWN
Classifier: License :: OSI Approved :: BSD License
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Operating System :: POSIX
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Environment :: Web Environment
