Metadata-Version: 2.1
Name: rundown
Version: 0.1
Summary: Quick and dirty overview of a Pandas DataFrame
Home-page: https://github.com/lucasdurand/rundown
Author: Lucas Durand
Author-email: lucas@lucasdurand.xyz
License: MIT
Description: # rundown
        A fun addition to pandas?
        
        ## Installation
        
        We'll get to this, just do the `git clone` and the `pip install .` , you know.
        
        ## Usage
        
        To be run in a Jupyter Notebook, or somewhere else with nice HTML rendering of Pandas tables (i.e. not Github)
        
        ```python
        import pandas as pd
        import rundown
        
        sample_df = pd.util.testing.makeDataFrame() # make one!
        
        sample_df.rundown()
        ```
        
        ![rundown](rundown_screenshot.png)
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
