All Projects → streamlit → Streamlit

streamlit / Streamlit

Licence: apache-2.0
Streamlit — The fastest way to build data apps in Python

Programming Languages

python
139335 projects - #7 most used programming language
typescript
32286 projects
javascript
184084 projects - #8 most used programming language
CSS
56736 projects
Makefile
30231 projects
SCSS
7915 projects

Projects that are alternatives of or similar to Streamlit

Pythondata
repo for code published on pythondata.com
Stars: ✭ 113 (-99.33%)
Mutual labels:  data-science, data-analysis, data-visualization
Dtale
Visualizer for pandas data structures
Stars: ✭ 2,864 (-83.06%)
Mutual labels:  data-science, data-analysis, data-visualization
Seaborn Tutorial
This repository is my attempt to help Data Science aspirants gain necessary Data Visualization skills required to progress in their career. It includes all the types of plot offered by Seaborn, applied on random datasets.
Stars: ✭ 114 (-99.33%)
Mutual labels:  data-science, data-analysis, data-visualization
Klib
Easy to use Python library of customized functions for cleaning and analyzing data.
Stars: ✭ 192 (-98.86%)
Mutual labels:  data-science, data-analysis, data-visualization
Ml Workspace
🛠 All-in-one web-based IDE specialized for machine learning and data science.
Stars: ✭ 2,337 (-86.18%)
Mutual labels:  data-science, data-analysis, data-visualization
Superset
Apache Superset is a Data Visualization and Data Exploration Platform
Stars: ✭ 42,634 (+152.18%)
Mutual labels:  data-science, data-analysis, data-visualization
Datasist
A Python library for easy data analysis, visualization, exploration and modeling
Stars: ✭ 123 (-99.27%)
Mutual labels:  data-science, data-analysis, data-visualization
Awesome Business Intelligence
Actively curated list of awesome BI tools. PRs welcome!
Stars: ✭ 1,157 (-93.16%)
Mutual labels:  data-science, data-analysis, data-visualization
Data Science Portfolio
A Portfolio of my Data Science Projects
Stars: ✭ 149 (-99.12%)
Mutual labels:  data-science, data-analysis, data-visualization
Dtale Desktop
Build a data visualization dashboard with simple snippets of python code
Stars: ✭ 128 (-99.24%)
Mutual labels:  data-science, data-analysis, data-visualization
Gradio
Create UIs for your machine learning model in Python in 3 minutes
Stars: ✭ 4,358 (-74.22%)
Mutual labels:  data-science, data-analysis, data-visualization
Data Science Resources
👨🏽‍🏫You can learn about what data science is and why it's important in today's modern world. Are you interested in data science?🔋
Stars: ✭ 171 (-98.99%)
Mutual labels:  data-science, data-analysis, data-visualization
Dex
Dex : The Data Explorer -- A data visualization tool written in Java/Groovy/JavaFX capable of powerful ETL and publishing web visualizations.
Stars: ✭ 1,238 (-92.68%)
Mutual labels:  data-science, data-analysis, data-visualization
Sweetviz
Visualize and compare datasets, target values and associations, with one line of code.
Stars: ✭ 1,851 (-89.05%)
Mutual labels:  data-science, data-analysis, data-visualization
My Journey In The Data Science World
📢 Ready to learn or review your knowledge!
Stars: ✭ 1,175 (-93.05%)
Mutual labels:  data-science, data-analysis, data-visualization
Dat8
General Assembly's 2015 Data Science course in Washington, DC
Stars: ✭ 1,516 (-91.03%)
Mutual labels:  data-science, data-analysis, data-visualization
Openrefine
OpenRefine is a free, open source power tool for working with messy data and improving it
Stars: ✭ 8,531 (-49.54%)
Mutual labels:  data-science, data-analysis, data-visualization
Graphia
A visualisation tool for the creation and analysis of graphs
Stars: ✭ 67 (-99.6%)
Mutual labels:  data-science, data-analysis, data-visualization
Awesome Scientific Python
A curated list of awesome scientific Python resources
Stars: ✭ 127 (-99.25%)
Mutual labels:  data-science, data-analysis, data-visualization
Matplotplusplus
Matplot++: A C++ Graphics Library for Data Visualization 📊🗾
Stars: ✭ 2,433 (-85.61%)
Mutual labels:  data-science, data-analysis, data-visualization

Welcome to Streamlit 👋

The fastest way to build and share data apps.

Streamlit lets you turn data scripts into sharable web apps in minutes, not weeks. It’s all Python, open-source, and free! And once you’ve created an app you can use our cloud platform to deploy, manage, and share your app!

Example of live coding an app in Streamlit|635x380

Installation

pip install streamlit
streamlit hello

Streamlit can also be installed in a virtual environment on Windows, Mac, and Linux.

A little example

Streamlit makes it incredibly easy to build interactive apps:

import streamlit as st

x = st.slider('Select a value')
st.write(x, 'squared is', x * x)

A bigger example

Streamlit's simple and focused API lets you build incredibly rich and powerful tools.  This demo project lets you browse the entire Udacity self-driving-car dataset and run inference in real-time using the YOLO object detection net.

Final App Animation

The complete demo is implemented in less than 300 lines of Python. In fact, the app contains only 23 Streamlit calls which illustrates all the major building blocks of Streamlit. You can try it right now at share.streamlit.io/streamlit/demo-self-driving.

The Streamlit GitHub badge

Streamlit's GitHub badge helps others find and play with your Streamlit app.

Streamlit App

Once you deploy your app, you can embed this badge right into your GitHub readme.md as follows:

[![Streamlit App](https://static.streamlit.io/badges/streamlit_badge_black_white.svg)](https://share.streamlit.io/yourGitHubName/yourRepo/yourApp/)

More Information

Streamlit Cloud

Streamlit Cloud is our deployment solution for managing, sharing, and collaborating on your Streamlit apps.

  • The Teams and Enterprise tiers provide secure single-click deploy, authentication, web editing, versioning, and much more for your Streamlit apps. You can sign-up here.
  • The Community tier (formerly Streamlit sharing) is the perfect solution if your app is hosted in a public GitHub repo and you’d like anyone in the world to be able to access it. It's completely free to use and you can sign-up here.

License

Streamlit is completely free and open-source and licensed under the Apache 2.0 license.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].