Streamlit's $35M Series B
11–20 of 41 posts
Re: Streamlit's $35M Series B
#12From a lot of bittersweet experiences, I tend to be very wary of “drastically simple” API products. We often say APIs are forever - so it is so critical to build the right abstraction. When I saw the demo on their page, yes it’s magically (their words) simple, but it also smells strongly of an API that can start leaking as complexity rises. Dave Cutler of NT fame used to say leaky abstractions are often worse than no…
Re: Streamlit's $35M Series B
#13Re: Streamlit's $35M Series B
#14Out of curiosity I saw what this product was about. It appears to be like a chatroom in the sense that its live but with an API or live application refresh where the programmer can write lines of code that immediately show app results. This is pretty cool but I don't know if its a real product other than live coding interviews or the most intense pressure cooker of your manager having you do the TPS reports right now…
You can write very short amounts of python code and get a nice interactive webapp. It's aimed at, but not exclusively for, exploring data and results. Live reload/etc make development extremely fast.
Re: Streamlit's $35M Series B
#15Out of curiosity I saw what this product was about. It appears to be like a chatroom in the sense that its live but with an API or live application refresh where the programmer can write lines of code that immediately show app results. This is pretty cool but I don't know if its a real product other than live coding interviews or the most intense pressure cooker of your manager having you do the TPS reports right now…
Re: Streamlit's $35M Series B
#16Re: Streamlit's $35M Series B
#17Out of curiosity I saw what this product was about. It appears to be like a chatroom in the sense that its live but with an API or live application refresh where the programmer can write lines of code that immediately show app results. This is pretty cool but I don't know if its a real product other than live coding interviews or the most intense pressure cooker of your manager having you do the TPS reports right now…
Let's say you implemented your model in python, and want to show it off:
With streamlit, you can simply take your python script, turn the variables you want to change and the plot/dataframes you want to output into streamlit objects. That takes about 5-10 minutes, and then you can already serve your application. It's almost like it's no extra work.
Re: Streamlit's $35M Series B
#18Streamlit is awesome. It's nicer than sending someone static results, and it isn't much more effort. And vastly better than sending a notebook to someone unless you expect them to modify the notebook a lot. And learning time to make Streamlit useful for a small internal apps is probably ~15 minutes for most people.
> And learning time to make Streamlit useful for a small internal apps is probably ~15 minutes for most people.
For the types of things streamlit works for, it's minutes to learn and can be just minutes to write a useful app.
Re: Streamlit's $35M Series B
#19From a lot of bittersweet experiences, I tend to be very wary of “drastically simple” API products. We often say APIs are forever - so it is so critical to build the right abstraction. When I saw the demo on their page, yes it’s magically (their words) simple, but it also smells strongly of an API that can start leaking as complexity rises. Dave Cutler of NT fame used to say leaky abstractions are often worse than no…
It's realistic. ST isn't about building huge projects. It's basically an interactive plot tool which is easier to use and more flexible than existing python solutions. 99% of streamlit code is useless in a month, and that's fine.
Re: Streamlit's $35M Series B
#20Congrats! Been on my to-do to try Streamlit. What are companies mainly using it for?