Metadata-Version: 2.1
Name: ladybug-pandas
Version: 0.2.4
Summary: A ladybug extension powered by pandas
Home-page: https://github.com/ladybug-tools/ladybug-pandas
Author: Ladybug Tools
Author-email: info@ladybug.tools
License: UNKNOWN
Description: [![Build Status](https://travis-ci.org/ladybug-tools/ladybug-pandas.svg?branch=master)](https://travis-ci.org/ladybug-tools/ladybug-pandas)
        [![Coverage Status](https://coveralls.io/repos/github/ladybug-tools/ladybug-pandas/badge.svg?branch=master)](https://coveralls.io/github/ladybug-tools/ladybug-pandas)
        
        [![Python 3.6](https://img.shields.io/badge/python-3.6-blue.svg)](https://www.python.org/downloads/release/python-360/)
        
        # ladybug-pandas
        
        A ladybug extension powered by pandas
        
        ## Installation
        ```console
        pip install ladybug-pandas
        ```
        
        ## QuickStart
        ```python
        import ladybug_pandas as lbp
        from ladybug.epw import EPW
        
        epw_path = 'tests/assets/epw/tokyo.epw'
        
        epw = EPW(epw_path)
        
        df = lbp.dataframe_from_epw(epw)
        
        df_ip = df.ladybug.to_ip()
        
        ```
        
        ## [API Documentation](http://ladybug-tools.github.io/ladybug-pandas/docs)
        
        You can also find some usage examples in the [examples](https://github.com/ladybug-tools/ladybug-pandas/blob/master/examples) folder of the code repository.
        
        
        ## Local Development
        1. Clone this repo locally
        ```console
        git clone git@github.com:ladybug-tools/ladybug-pandas
        
        # or
        
        git clone https://github.com/ladybug-tools/ladybug-pandas
        ```
        2. Install dependencies:
        ```console
        cd ladybug-pandas
        pip install -r dev-requirements.txt
        pip install -r requirements.txt
        ```
        
        3. Run Tests:
        ```console
        python -m pytest tests/
        ```
        
        4. Generate Documentation:
        ```console
        sphinx-apidoc -f -e -d 4 -o ./docs ./ladybug_pandas
        sphinx-build -b html ./docs ./docs/_build/docs
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
