Metadata-Version: 2.1
Name: pandas-extras
Version: 0.0.4
Summary: Extension package for the popular Pandas library
Home-page: https://github.com/nokia/pandas-extras
Maintainer: Hodossy, Szabolcs
Maintainer-email: hodossy.szabolcs@gmail.com
License: BSD
Description: # pandas-extras
        ![Lint](https://github.com/nokia/pandas-extras/workflows/Pylint/badge.svg)
        ![Tests](https://github.com/nokia/pandas-extras/workflows/Coverage/badge.svg)
        [![Documentation Status](https://readthedocs.org/projects/pandas-extras/badge/?version=latest)](https://pandas-extras.readthedocs.io/en/latest/?badge=latest)
        
        Extension package for the popular Pandas library
        
        # Installation
        The package can be installed through pip:
        ```console
        $ pip install pandas-extras
        ```
        
        # Usage
        The package contains helper function that are best called with the `pipe` operator of `DataFrame`.
        
        ```python
        from pandas_extras import expand_lists
        
        df = DataFrame(...)
        df.pipe(expand_lists, *args, **kwargs)
        ```
        
        ## License
        
        This project is licensed under the BSD-3-Clause license - see the [LICENSE](https://github.com/nokia/pandas-extras/blob/master/LICENSE).
        
Keywords: pandas,data analysis,data transformation
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.6
Description-Content-Type: text/markdown
