Metadata-Version: 1.0
Name: python-handler-socket
Version: 0.2.2
Summary: HandlerSocket client for Python
Home-page: http://bitbucket.org/excieve/pyhs
Author: Artem Gluvchynsky
Author-email: excieve@gmail.com
License: MIT
Description: ====
        pyhs
        ====
        
        Overview
        --------
        
        pyhs (python-handler-socket) is a Python client library for the
        `HandlerSocket <https://github.com/ahiguti/HandlerSocket-Plugin-for-MySQL/>`_
        MySQL plugin.
        
        Installation
        ------------
        
        First, install MySQL and HandlerSocket. Some of the client's functionality
        depends on latest revisions of the plugin so keep it up to date.
        
        After that, get the distribution::
            
            pip install python-handler-socket
        
        Or get the package from latest source::
        
            pip install hg+http://bitbucket.org/excieve/pyhs#egg=python-handler-socket
        
        Or clone the main repository and install manually::
        
            hg clone http://bitbucket.org/excieve/pyhs
            cd pyhs
            python setup.py install
        
        Check your installation like this::
        
            python
            >>> from pyhs import __version__
            >>> print __version__
        
        Usage
        -----
        
        Usage cases, details and API reference are available
        in ``docs`` directory inside the package or
        `online <http://python-handler-socket.readthedocs.org/>`_ on RTD.
        
        Changelog
        ---------
        
        0.2.2
        ~~~~~
        - Fixed incorrect behavior with single columns responses.
        - Changed return value of ``find_modify`` calls with ``return_original=True`` to a list of rows of (field, value) tuples instead of a flat list of values.
        
        0.2.1
        ~~~~~
        - Implemented optimised C versions of ``encode`` and ``decode``.
        - Modified installation script to include optional building of C speedups module.
        
        0.2.0
        ~~~~~
        - Added "incr" and "decr" operations support to the ``find_modify`` call.
        - Added increment and decrement methods to the ``Manager`` class.
        - Added original value result for all ``find_modify`` operations.
        - Optimised query string encoding function.
        
        0.1.0
        ~~~~~
        - Initial release.
        
        License
        -------
        
        | pyhs is released under MIT license.
        | Copyright (c) 2010 Artem Gluvchynsky <excieve@gmail.com>
        
        See ``LICENSE`` file inside the package for full licensing information.
        
Platform: any
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Database
