Metadata-Version: 1.1
Name: orderedpy
Version: 0.0.1
Summary: UNKNOWN
Home-page: https://github.com/monzita/orderedpy
Author: Monika Ilieva
Author-email: hidden@hidden.com
License: MIT License
Description: OrderedPy
        ------------
        
        OrderedPy is an ordered version of the ordinary python list.
        
        Installation
        ************
        
        >>> pip install orderedpy
        
        Documentation
        *************
        
        Contains most of the list methods.
        
        To Do
        ******
        
        * ``key``
        * ``reverse``
        
        Example
        *******
        
        >>> from odrederedpy import Ordered
        >>>
        >>> o = Ordered([1, 2, 5, 1, 2, 3])
        >>> o
        [1, 1, 2, 2, 3, 5]
        >>> other = [2, 1, 3, 4]
        >>> o == other
        False
        >>> o.extend([4, 1, 2])
        >>> o
        [1, 1, 1, 2, 2, 2, 3, 4, 5]
        >>> o.append(1)
        >>> o
        [1, 1, 1, 1, 2, 2, 2, 3, 4, 5]
        >>> o.insert(2, 3)
        IndexError
        >>> o.insert(0, 1)
        [1, 1, 1, 1, 1, 2, 2, 2, 3, 4, 5]
        >>> o[0] = 0
        >>> o
        [0, 1, 1, 1, 1, 2, 2, 2, 3, 4, 5]
        
        
        LICENSE
        *******
        
        MIT License
Keywords: orderedpy
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3 :: Only
