Metadata-Version: 2.1
Name: streamlit-custom-ydata-profiling
Version: 0.1.0
Summary: Custom YData Profiling component for Streamlit.
Home-page: https://github.com/arpy8/streamlit_custom_ydata_profiling
Author: Arpit Sengar (arpy8)
Author-email: arpitsengar99@gmail.com
License: MIT
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
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
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: ydata-profiling >=4.0.0
Requires-Dist: streamlit >=0.63
Provides-Extra: devel
Requires-Dist: wheel ; extra == 'devel'
Requires-Dist: pytest ==7.4.0 ; extra == 'devel'
Requires-Dist: playwright ==1.39.0 ; extra == 'devel'
Requires-Dist: requests ==2.31.0 ; extra == 'devel'
Requires-Dist: pytest-playwright-snapshot ==1.0 ; extra == 'devel'
Requires-Dist: pytest-rerunfailures ==12.0 ; extra == 'devel'

# 📈 Streamlit Pandas Profiling
This is a slightly tweaked version of the `streamlit-pandas-profiling` component but with the latest dependencies. I've created this for my another ongoing project whose dependencies kept on clashing with the [streamlit-pandas-profiling](https://github.com/arpy8/custom_st_ydata_profiling) package by [okld](https://github.com/okld).


[![GitHub][github_badge]][github_link] [![PyPI][pypi_badge]][pypi_link] 

## Installation

```sh
pip install streamlit-custom-ydata-profiling
```

## Getting started

```python
import pandas as pd
import streamlit as st
from ydata_profiling import ProfileReport

from streamlit_custom_ydata_profiling import st_profile_report

df = pd.read_csv("https://storage.googleapis.com/tf-datasets/titanic/train.csv")
pr = ProfileReport(df)

st_profile_report(pr)
```

## Demo

[![Open in Streamlit][share_badge]][share_link] 

[![Preview][share_img]][share_link]

[github_badge]: https://badgen.net/badge/icon/GitHub?icon=github&color=black&label
[github_link]: https://github.com/arpy8/streamlit_custom_ydata_profiling

[pypi_badge]: https://badgen.net/pypi/v/streamlit_custom_ydata_profiling?icon=pypi&color=black&label
[pypi_link]: https://pypi.org/project/streamlit-custom-ydata-profiling
