Metadata-Version: 1.1
Name: pylodash
Version: 0.4.0
Summary: A modern Python utility library delivering modularity, performance & extras.
Home-page: https://gitlab.asoft-python.com/g-tuanluu/python-training
Author: Tuan Luu
Author-email: tuan.luu@asnet.com.vn
License: MIT
Description: # Python Lodash
        
        pylodash is collection utilities allow you working with `List`, `Math`, `Number` and `String`
        
        ## Installation
        
        You can install the Pylodash from [PyPI](https://pypi.org/project/pylodash/):
        
        ```
        pip install pylodash
        ```
        
        Pylodash is supported on Python 3.4 and above.
        
        ## How to use
        
        You can call the Pylodash in your own Python code, by importing the `pylodash` package:
        
        ```
        >>> from pylodash import arrays as _
        >>> _.chunk(['a', 'b' , 'c', 'd'], 2)
        // => [['a', 'b'], ['c', 'd']]
        ```
Keywords: python lodash utilities
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Text Processing :: Linguistic
