Metadata-Version: 2.1
Name: streamlit-pandas-profiling
Version: 0.1.2
Summary: Pandas Profiling component for Streamlit.
Home-page: https://share.streamlit.io/okld/streamlit-gallery/main?p=pandas-profiling
Author: okld
License: MIT
Description: # 📈 Streamlit Pandas Profiling
        
        [![GitHub][github_badge]][github_link] [![PyPI][pypi_badge]][pypi_link] 
        
        ## Installation
        
        ```sh
        pip install streamlit-pandas-profiling
        ```
        
        ## Getting started
        
        ```python
        import pandas as pd
        import pandas_profiling
        import streamlit as st
        
        from streamlit_pandas_profiling import st_profile_report
        
        df = pd.read_csv("https://storage.googleapis.com/tf-datasets/titanic/train.csv")
        pr = df.profile_report()
        
        st_profile_report(pr)
        ```
        
        ## Demo
        
        [![Open in Streamlit][share_badge]][share_link] 
        
        [share_badge]: https://static.streamlit.io/badges/streamlit_badge_black_white.svg
        [share_link]: https://share.streamlit.io/okld/streamlit-gallery/main?p=pandas-profiling
        
        [github_badge]: https://badgen.net/badge/icon/GitHub?icon=github&color=black&label
        [github_link]: https://github.com/okld/streamlit-pandas-profiling
        
        [pypi_badge]: https://badgen.net/pypi/v/streamlit-pandas-profiling?icon=pypi&color=black&label
        [pypi_link]: https://pypi.org/project/streamlit-pandas-profiling
        
Platform: UNKNOWN
Requires-Python: >=3.6
Description-Content-Type: text/markdown
