Metadata-Version: 2.0
Name: python-memcached-udp
Version: 0.2a0
Summary: A simple UDP Memcached client written in Python.
Home-page: https://github.com/idanmo/python-memcached-udp
Author: Idan Moyal
Author-email: idanmo@gmail.com
License: UNKNOWN
Keywords: memcached udp
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Requires-Dist: six (==1.10.0)

Python Memcached UDP Client
===========================

.. image:: https://img.shields.io/pypi/v/python-memcached-udp.svg
    :target: https://pypi.python.org/pypi/python-memcached-udp

.. image:: https://travis-ci.org/idanmo/python-memcached-udp.svg?branch=master
    :target: https://travis-ci.org/idanmo/python-memcached-udp


A simple UDP Memcached client implementation written in Python.

Implemented for my own needs, use at your own risk :-)


Python Compatibility
--------------------
>= 2.7 (3 included)


Supported Operations
--------------------
- set
- get


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

.. code-block:: python

    pip install https://github.com/idanmo/python-memcached-udp/archive/master.zip


Usage
-----

.. code-block:: python

    import memcached_udp

    client = memcached_udp.Client([('192.168.0.1', 11211), ('192.168.0.5', 11211)])
    client.set('key1', 'value1')
    r = client.get('key1')



