Give me a cool app related to NYC
To upload files, please first save the app
import streamlit as st
import pandas as pd
import requests
st.title('NYC Explorer')
st.write("Welcome to NYC Explorer! Find out interesting data about New York City.")
# Load some interesting data about NYC (e.g., neighborhood data)
url = 'https://data.cityofnewyork.us/resource/nyc-neighborhoods.json'
data = pd.read_json(url)
# Display the data in a table
st.write("Here is a list of neighborhoods in NYC:")
st.table(data[['neighborhood', 'borough']])
if st.button('Celebrate NYC!'):
st.balloons()
st.snow()
Hi! I can help you with any questions about Streamlit and Python. What would you like to know?