Created
September 25, 2019 00:03
-
-
Save treuille/a2b9b7fdca3a353ac4a3b6392dd01fa6 to your computer and use it in GitHub Desktop.
Trying to reproduce Pavel's bug...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import streamlit as st | |
| import pandas as pd | |
| with st.echo(): | |
| @st.cache(ignore_hash=True) | |
| def load_cached(): | |
| csv = pd.read_csv("http://s3-us-west-2.amazonaws.com/streamlit-demo-data/uber-raw-data-sep14.csv.gz", nrows=100000) | |
| return csv | |
| df = load_cached() | |
| st.dataframe(data=df) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment