👩‍🏫 Introduction ================== **datahelper** is a utility package for handling Python collections like JavaScript **lodash** Most functions are inspired by **lodash** library Links: .. list-table:: * Project: https://github.com/doondoony/datahelper * Documentation: https://datahelper.readthedocs.io * PyPi: https://pypi.python.org/pypi/datahelper Each module can be imported individually or with a namespace *datahelper*. .. code-block:: python # direct import >>> from datahelper import pick # with a namespace >>> import datahelper # Test Data >>> data = {'a': 1, {'b': 'c': 2}} >>> pick(data, 'b.c') 2 >>> datahelper.head([1,2,3]) 1 .. seealso:: For more details, see :ref:`API Reference `.