Metadata-Version: 1.1
Name: cradox
Version: 1.0.2
Summary: Python libraries for the Ceph librados library with use cython instead of ctypes
Home-page: https://github.com/sileht/pycradox
Author: Mehdi Abaakouk
Author-email: sileht@sileht.net
License: LGPL 2.1
Description: ======
        cradox
        ======
        
        .. image:: https://img.shields.io/pypi/v/cradox.svg
           :target: https://pypi.python.org/pypi/cradox/
           :alt: Latest Version
        
        .. image:: https://img.shields.io/pypi/dm/cradox.svg
           :target: https://pypi.python.org/pypi/cradox/
           :alt: Downloads
        
        
        Python libraries for the Ceph librados library with use cython instead of ctypes
        
        This a standalone library identical to this Ceph PR https://github.com/ceph/ceph/pull/7621
        
        But this can be used with older version of Ceph from 0.80.X (firefly) to 10.0.X (perhaps more not tested)
        
        This is designed for application that only want to use the Rados API, this can’t be used with the
        ceph rbd.py or librbdpy
        
        The API of this python lib is identical to the Ceph rados.py API. More detail can be found on
        https://github.com/ceph/ceph/pull/7621.
        
        
        * Free software: LGPL 2.1
        * Documentation: http://docs.ceph.com/docs/master/rados/api/python/
        * Source: http://github.com/sileht/pycradox
        
        
        Installation
        ------------
        
        Pre-requires::
        
            $ sudo apt-get install cython librados2 librados-dev
        
        Then, at the command line::
        
            $ pip install cradox
        
        Or, if you have virtualenvwrapper installed::
        
            $ mkvirtualenv cradox
            $ pip install cradox
        
        Usage
        -----
        
        ::
        
          import cradox as rados
        
        
        Functionnal Tests
        -----------------
        
        A running ceph cluster is needed, the authentification must be disabled or done
        automatically with the configuration in /etc/ceph/ceph.conf.
        
        For python 2.X::
        
          $ ./test_rados.sh
        
        For python 3.X::
        
          $ ./test_rados.sh -3
        
        For python2-dbg + gdb::
        
          $ ./test_rados.sh -b
        
        For python2-dbg + cygdb::
        
          $ ./test_rados.sh -d
        
        
Platform: UNKNOWN
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
