Metadata-Version: 2.1
Name: customtimsort
Version: 0.0.49
Summary: Timsort sorting algorithm with custom minrun
Home-page: https://github.com/lehatrutenb/FastTimSort
Author: lehatr
Author-email: lehatrutenb@gmail.com
License: UNKNOWN
Description: # CustomTimSort
        CustomTimSort is a library where you can sort python objects using custom minruns.
        How to use:
        ```
        from timsort import timsort, get_minrun
        
        minrun = get_minrun(len(yours_object))
        timsort(yours_object, minrun)
        ```
        
        ## *get_minrun(len_of_yours_object: int)* -> int
        Returns predicted minrun for given object's size
        
        ## *timsort(yours_object: some iterible obj, minrun: int)* -> int
        Sorts yours_object using given minrun
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3
Description-Content-Type: text/markdown
