fancylit

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

APACHE-2.0 License

Downloads
49
Stars
11
Committers
5

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:

import streamlit as st
import fancylit

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

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

Hacktoberfest 2021

There are plenty of modules to create, or update all detailed in the issues page. Complete 4 PRs during October to win a free t-shirt.

To learn more, check out their FAQ

If you want to build right away you can use Gitpod which provides a developer environment ready to begin coding. Simply click the button below to begin building.