Metadata-Version: 1.1
Name: pdsa
Version: 0.1.1
Summary: Probabilistic Data Structures and Algorithms in Python
Home-page: https://github.com/gakhov/pdsa
Author: Andrii Gakhov
Author-email: andrii.gakhov@gmail.com
License: MIT
Description: Probabilistic Data Structures and Algorithms in Python
        ========================================================
        
        .. contents ::
        
        
        Introduction
        ------------
        
        Probabilistic data structures is a common name of data structures
        based on different hashing techniques.
        
        Unlike regular (or deterministic) data structures, they always give you
        approximated answers and usually provide reliable ways to estimate
        the error probability.
        
        The potential losses or errors are fully compensated by extremely
        low memory requirements, constant query time and scaling.
        
        Dependencies
        ---------------------
        
        * Python 3.3+ (http://python.org/download/)
        * Cython 0.25+ (http://cython.org/#download)
        
        
        Documentation
        --------------
        
        TODO
        
        License
        -------
        
        MIT License
        
        
        Source code
        -----------
        
        * https://github.com/gakhov/python-pdsa/
        
        
        Authors
        -------
        
        * Maintainer: `Andrii Gakhov <andrii.gakhov@gmail.com>`
        
        
        Install
        --------
        
        1. Download `python-pdsa` archive::
        
            $ git clone https://github.com/gakhov/python-pdsa.git
            $ cd python-pdsa
        
        For other download options (zip, tarball) visit the github web page of `python-pdsa <https://github.com/gakhov/python-pdsa>`_
        
        2. Build `python-pdsa` extension module::
        
            $ make build
        
        3. Install `python-pdsa` module into your Python distribution::
        
            $ [sudo] make install
        
        3. Test install::
        
            $ bin/python
            >>> import pdsa
            >>>
        
Platform: UNKNOWN
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Cython
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Scientific/Engineering
