Skip to content

Instantly share code, notes, and snippets.

@alanjones2
Last active June 2, 2022 10:54
Show Gist options
  • Save alanjones2/102d080bcb0bfb75c93d74cccca67256 to your computer and use it in GitHub Desktop.
Save alanjones2/102d080bcb0bfb75c93d74cccca67256 to your computer and use it in GitHub Desktop.
def run():
import streamlit as st
import pandas as pd
import plotly.express as px
df = pd.DataFrame(px.data.gapminder())
# Continents/Country code goes here
# This code allows you to run the app standalone
# as well as part of a library of apps
if __name__ == "__main__":
run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment