METADATA 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. Metadata-Version: 2.0
  2. Name: python-memcached
  3. Version: 1.58
  4. Summary: Pure python memcached client
  5. Home-page: http://www.tummy.com/Community/software/python-memcached/
  6. Author: Sean Reifschneider
  7. Author-email: jafo@tummy.com
  8. License: UNKNOWN
  9. Download-URL: ftp://ftp.tummy.com/pub/python-memcached/
  10. Platform: UNKNOWN
  11. Classifier: Development Status :: 5 - Production/Stable
  12. Classifier: Intended Audience :: Developers
  13. Classifier: License :: OSI Approved :: Python Software Foundation License
  14. Classifier: Operating System :: OS Independent
  15. Classifier: Programming Language :: Python
  16. Classifier: Topic :: Internet
  17. Classifier: Topic :: Software Development :: Libraries :: Python Modules
  18. Classifier: Programming Language :: Python
  19. Classifier: Programming Language :: Python :: 2
  20. Classifier: Programming Language :: Python :: 2.6
  21. Classifier: Programming Language :: Python :: 2.7
  22. Classifier: Programming Language :: Python :: 3
  23. Classifier: Programming Language :: Python :: 3.2
  24. Classifier: Programming Language :: Python :: 3.3
  25. Classifier: Programming Language :: Python :: 3.4
  26. Requires-Dist: six (>=1.4.0)
  27. [![Build
  28. Status](https://travis-ci.org/linsomniac/python-memcached.svg)](https://travis-ci.org/linsomniac/python-memcached)
  29. ## Overview
  30. This software is a 100% Python interface to the memcached memory cache
  31. daemon. It is the client side software which allows storing values
  32. in one or more, possibly remote, memcached servers. Search google for
  33. memcached for more information.
  34. This package was originally written by Evan Martin of Danga. Please do
  35. not contact Evan about maintenance. Sean Reifschneider of tummy.com,
  36. ltd. has taken over maintenance of it.
  37. Please report issues and submit code changes to the github repository at:
  38. https://github.com/linsomniac/python-memcached
  39. For changes prior to 2013-03-26, see the old Launchpad repository at:
  40. Historic issues: https://launchpad.net/python-memcached
  41. ## Testing
  42. Test patches locally and easily by running tox:
  43. pip install tox
  44. tox -e py27
  45. Test for style by running tox:
  46. tox -e pep8