Metadata-Version: 1.1
Name: prefsort
Version: 0.0.1
Summary: Sort a sequence, preferring some values
Home-page: https://github.com/jonathaneunice/prefsort
Author: Jonathan Eunice
Author-email: jonathan.eunice@gmail.com
License: Apache Software License 2.0
Description: ========
        prefsort
        ========
        
        
        .. image:: https://img.shields.io/pypi/v/prefsort.svg
                :target: https://pypi.python.org/pypi/prefsort
        
        .. image:: https://img.shields.io/travis/jonathaneunice/prefsort.svg
                :target: https://travis-ci.org/jonathaneunice/prefsort
        
        .. image:: https://readthedocs.org/projects/prefsort/badge/?version=latest
                :target: https://prefsort.readthedocs.io/en/latest/?badge=latest
                :alt: Documentation Status
        
        .. image:: https://pyup.io/repos/github/jonathaneunice/prefsort/shield.svg
             :target: https://pyup.io/repos/github/jonathaneunice/prefsort/
             :alt: Updates
        
        
        Partially sort a sequence, preferring some values.
        
        .. code-block:: python
        
            from prefsort import prefsorted
            import random
        
            seq = list('abcde')
            random.shuffle(seq)
        
            seq2 = prefsorted(seq, 'c b')
            assert seq2[0] == 'c'
            assert seq2[1] == 'b'
            assert set(seq2) == set(seq)
        
        Note that this doesn't sort the majority of the sequence in
        the way Python's normal ``list.sort()`` or ``sorted()`` do.
        It just pulls the preferred members to the front of the list.
        
        
Keywords: prefsort
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Libraries :: Python Modules
