top | item 21158487

Streamlit: Turn a Python script into an interactive data analysis tool

470 points| danicgross | 6 years ago |towardsdatascience.com | reply

65 comments

order
[+] _gwlb|6 years ago|reply
This looks really slick, can't wait to try it out!

If anyone is curious about other tools in the same space, our data scientists use Dash[1] and plotly to build interactive exploration and visualization apps. We set up a Git repo that deploys their apps internally with every merge to master, so they're actually building and updating tools that our operations, marketing, etc teams use every day.

[1] https://plot.ly/dash/

[+] amrrs|6 years ago|reply
Dash is awesome. I've been using Shiny in R for similar purpose. Do you have any blog post or some more details around the deployment process and your use-case of using Dash?
[+] cheez|6 years ago|reply
I currently use an interactive Jupyter notebook to accomplish similar things for my own business.

I've always looked on Dash as a bit of FOMO myself. If you have experience with Jupyter, could you contrast Dash vs Jupyter?

[+] random42|6 years ago|reply
Interesting project, but why does an open source developer tool needs browser telemetry?

You should ask for telemetry permissions _before_ the process starts up (as you do for email address), and keep the default as "No", instead of start to send the data transparently unless non user friendly steps are taken by the user.

[+] iandanforth|6 years ago|reply
This is a declarative programming model similar to React. I'm surprised the analogy isn't drawn in the article.

"Streamlit assigns each variable an up-to-date value given widget states."

This line is interesting because it implies distributed state in each component (widget). Alternatively this could be framed in centralized state manager terminology.

"Each widget is provided with the current state of the application, and that state is also available to your script."

If you adopt this mindset you can separate the concerns of state and presentation. At first glance it appears that you need to extract state from widgets at the same point as they are added to the page.

(Please correct me if I'm wrong.)

I might not want to have a widget added to a page until much later in the script, but I want to have access to its state at the top of the script.

The value of the top level `props` parameter to a react component is it gives you access to all state wherever you need it, and disentangles this state from the arrangement of the page.

[+] adrien-treuille|6 years ago|reply
(co-founder of Streamlit here)

Ian:

Thanks for that comment. You're exactly right: Streamlit adapts a React-like model. In fact, the connection goes deeper than the post describes. For example, to make it efficient to run the same script repeatedly, Streamlit does packet-level deduplication. If you generate a lot of data and send it to the browser, only small deltas need be sent to update the UI.

We have a list of future blog posts we hope to write and one of them is (cheekily) called "Streamlit is React for Python." ;) (Not quite true, more of an imperfect analogy!)

So it made me really happy to see someone drawing that analogy already. Thank you. :)

[+] simonw|6 years ago|reply
I'm impressed.

Installing on my Mac to test this out was very straight-forward:

    cd /tmp
    mkdir streamlit
    cd streamlit
    pipenv shell
    pip install streamlit
Then I could play with the built-in demos by running:

    streamlit hello
So that was a slick intro - next step was I followed this tutorial: https://streamlit.io/docs/tutorial/create_a_data_explorer_ap...

And a few minutes later I had an interactive notebook-style interface for playing with Uber pickup data in New York.

This is a really interesting product.

[+] edmondo1984|6 years ago|reply
How would you compare this with the experience you get with Jupiter Notebook?
[+] ttul|6 years ago|reply
I am a terrible data scientist. I look forward to this tool making me look like I know what I’m doing.
[+] yardshop|6 years ago|reply
I gave it a try on Windows and ran into an issue, but found a workaround.

I'm using WinPython 3.6 on Windows 7. I did "pip install streamlit" and then "streamlit hello", and had to allow it through the firewall, then got a 404 page.

The workaround is very simple, just use the provided http address and add "index.html":

    http://localhost:8501/index.html
This link has more info: https://github.com/streamlit/streamlit/issues/244
[+] 77ko|6 years ago|reply
Whats the easiest way to make public on the internet a small streamlit powered analysis?

I saw there is a Streamlit for teams in the future (sounds expensive) and on the forums they recommended to make a docker container and host it anywhere, which is doable, but I'd love a way to be able to just put something up on the internet for a short period of time, sort of how now.sh[1] works.

[1]: https://zeit.co/home

[+] diskmuncher|6 years ago|reply
I am not sure "rerunning the script from top to bottom" is a necessary condition but for the code layout to reflect the expected behavior.

How would people compare this to Observable [1]? 1. Javascript vs. Python 2. Client-only vs. server-required?

Does the market already give advantage to Python and server-required because the data sets are too large and live on the server, and the users (data scientists) prefer Python and the existing libraries there?

[1]: https://observablehq.com/

[+] kfk|6 years ago|reply
I agree on the premise: yes eventually every analysis needs to become an app. Also let me add: no, dashboards are not going to cut it, they don't offer enough interactivity. I also love that the app here is a script and hence can be version controlled with git. However, there is no description anywhere of what happens when you need to scale with this. If you have to go from a couple of testers to 100 internal users like it very often happens in analytics, how does this react?

Also caching is a great idea but I would expect a lot of this logic to be managed on the server side, or I am missing something and ML is different here? I would expect to pipe as little data as possible back to the application because I want the user to wait max 3-4 seconds for the app to load at start.

[+] Doxin|6 years ago|reply
As far as I can tell the caching is happening server-side. Pretty much all the frontend seems to be doing is poking the back-end to re-run the script (or get results from cache) and then getting back the diff to apply to the UI.
[+] jonjlee|6 years ago|reply
Apart from ML, this could be very useful for creating dashboards in the healthcare setting. Dashboards are surprisingly had to make, deploy, and maintain in the hospital. I've created many one-off webapps for different research groups and have been dreaming of a tool that consolidates all the front end work allowing me to concentrate how to process the data. Streamlit looks incredible for this!
[+] dvdhsu|6 years ago|reply
Hello! I’m working on Retool (https://retool.com), and it does exactly what you said. Our focus is more on building internal applications + dashboards, and we have a HIPAA-compliant version you can deploy on-prem with no telemetry. I’ll try to reach out to you (but if I can’t find your email, mine is david@). Thanks!
[+] joshgel|6 years ago|reply
Same, my hospital uses Tableau, but expensive and some what clunky. This could be much easier and faster.
[+] ignoramus23|6 years ago|reply
This is awesome! Is there a way to generate a standalone binary, e.g. as an electron app? I'm looking for ways to ship small custom python/pandas data analysis apps including data to non-technical users - but as a local application.
[+] zippie|6 years ago|reply
You may want to consider building Streamlit into a standalone binary using Static-X or pex. I use pex for standalone binary distribution of a fairly popular python app [1].

[1] https://github.com/johnj/salt-pex

[+] sandGorgon|6 years ago|reply
This is spectacular. I have written about this many times on HN itself .

Jupyter -> internal tool/API is pretty much the holy grail of bridging data scientists, business teams and engineering.

I hope this project doesn't die out. A lot of people would pay for this.

[+] zapita|6 years ago|reply
They have plenty of funding, so if it solves a real problem for people, I expect they are here to stay.
[+] pj_mukh|6 years ago|reply
This is pretty neat! As this is an offshoot of some autonomous car project, what would the support be for 3D data. If I wanted to see some LIDAR or Pointcloud data in browser? Esp if its a tf-output.
[+] stekern|6 years ago|reply
This looks really promising! I recently wanted to make an interactive GUI to control the inputs to a GAN in order to generate images and visualize how different inputs affect certain properties of the output images.

I ended up converting my Python models to TensorFlow.js and creating an ad-hoc Vue.js app [0], but Streamlit could have been very beneficial here, especially if you can just put nginx in front of it and serve it to the masses.

[0] https://thispicturedoesnotexist.com

[+] mxwsn|6 years ago|reply
Does anyone have any hands-on experience with this? It looks impressive. I'm interested in contrasting this with dash plotly for python
[+] bobosha|6 years ago|reply
My thoughts exactly, this looks very similar to plotly Dash. Perhaps the creators could share their thoughts on how this compares.
[+] asimjalis|6 years ago|reply
Can this be used from within the Jupyter notebook?
[+] tvst|6 years ago|reply
Not at the moment. There are a few reasons for this, but perhaps the most fundamental one is that Streamlit starts a blocking server -- so even if you could run it inside Jupyter it would pause your Jupyter session until you killed Streamlit.

(Co-founder of Streamlit here)

[+] danielvf|6 years ago|reply
I use Jupyter notebooks all the time for acquiring, cleaning, and exploring datasets. Occasionally these notebooks mutated into tools for more than just one off exploring. It's always felt a little awkward to use them for more day to day data tasks. Steamlit looks amazing for these cases!
[+] ariskk|6 years ago|reply
This is truly lovely. I went from ‘pip install’ to reproducing one of our internal dashboards in ~1 hour. One issue: Auth and ACLs seem to be part of the paid/hosted version so it needs extra work to become viable for most people
[+] ppod|6 years ago|reply
This looks excellent. I'm an avid RShiny user and can't wait to try this and Dash. Is there an example for how to host (e.g. on aws or google cloud) and make an app available online?
[+] marmaduke|6 years ago|reply
You could probably build a Docker image and set the command to run streamlit, then run it like anything else.