Metadata-Version: 2.1
Name: fancylit
Version: 0.0.2
Summary: Contains pre-packaged Streamlit code to render fancy visualizations, run modeling tasks, and data exploration
Home-page: https://github.com/banjtheman/fancylit
Author: Hacktoberfest
Author-email: hacktoberfest@gmail.com
Maintainer: The community
Maintainer-email: hacktoberfest@gmail.com
License: Apache 2
Keywords: visualization,machine learning,streamlit,data science
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.5
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: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Scientific/Engineering :: Visualization
Requires-Python: >=3.4, <4
Description-Content-Type: text/markdown
Requires-Dist: streamlit
Requires-Dist: yellowbrick
Requires-Dist: altair
Requires-Dist: pandas
Requires-Dist: plotly
Requires-Dist: wordcloud
Requires-Dist: seaborn
Requires-Dist: streamlit-yellowbrick

# Fancylit
Fancylit is a python module that contains pre-packaged Streamlit code to render fancy visualizations, run modeling tasks, and data exploration  


## Installation
```
pip install fancylit
```

## Quick Start

Fancylit makes it incredibly easy to build fancy interactive apps:

```python
import streamlit as st
import fancylit

df = pd.read_csv("datasets/iris.csv")
st.write("Bar Chart Example")
fancylit.viz.charts.bar_chart(df)
```

![image](https://user-images.githubusercontent.com/696254/133178407-c4778344-a6c5-4db1-9402-d2c0873e3921.png)


See more examples here: https://share.streamlit.io/banjtheman/fancylit/main/example_app.py



## Hacktoberfest 2021

![Hacktoberfest](https://hacktoberfest.digitalocean.com/_nuxt/img/logo-hacktoberfest-full.f42e3b1.svg)

There are plenty of modules to create, or update all detailed in the [issues page](https://github.com/banjtheman/fancylit/issues). Complete 4 PRs during October to win a free t-shirt.

To learn more, check out their [FAQ](https://hacktoberfest.digitalocean.com/resources/participation)


If you want to build right away you can use [Gitpod](https://gitpod.io/) which provides a developer environment ready to begin coding. Simply click the button below to begin building.  

[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/banjtheman/fancylit/)




