🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

python-memcached-udp

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

python-memcached-udp

A simple UDP Memcached client written in Python.

0.2a0
PyPI
Maintainers
1

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')

Keywords

memcached udp

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts