Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
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
  • Socket score

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

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc