Metadata-Version: 1.1
Name: easy-tools
Version: 3.4
Summary: More routines for operating on iterables and data structures, beyond itertools
Home-page: https://github.com/jayanthsai1998/EasyTools
Author: Jayanth Sai
Author-email: jayanthsai1998@gmail.com
License: MIT
Description: ==============
        Easy Tools
        ==============
        
        
        Python's ``itertools`` library is a gem - you can compose elegant solutions
        for a variety of problems with the functions it provides. In ``easy-tools``
        we collect additional building blocks, recipes, and routines for working with
        Python iterables.
        
        ----
        
        
        Getting started
        ===============
        
        To get started, install the library with `pip <https://pip.pypa.io/en/stable/>`_:
        
        .. code-block:: shell
        
            pip install easy-tools
        
        The recipes (modules/functions) included in this package are:
        	.triplet_occurrence
        	.doublet_occurrence
        	.equilibrium_point
        	.non_divisible_subset_len
        	.leaders_to_left
        	.leaders_to_right
        	.largest_number
        
        
        For example,
        
        .. code-block:: python
        
            >>> from easy_tools import largest_number
            >>> iterable = [98, 9, 26]
            >>> largest_number(iterable)
            99826
        
        
        
        
        You can use help function to get the detailed description of a function.
        
        .. code-block:: python
        
            >>> help(function_name)
        
        Development
        ===========
        
        ``easy-tools`` is maintained by `@jayanth <https://github.com/jayanthsai1998>`_.
        If you have a problem or suggestion, please file a bug or pull request in this
        repository. Happy Pythoning!
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
