DEV Community

Cover image for Machine Learning - Streamlit [Python]
Bek Brace
Bek Brace

Posted on

 

Machine Learning - Streamlit [Python]

Streamlit, an open-source Python library that makes it easy to create and share beautiful, custom web apps for machine learning and data science.
In this tutorial, you will see how in just a few minutes you can build a financial web app which you can use it for presentation or your own use.

Streamlit turns data scripts into shareable web apps in minutes; and the best part is that it's all in Python, and it's open source which means all for free. No front‑end experience required. So to create animation sliders, rendering charts/graphs, animating download bars and much more is done without any HTML/CSS/JS , just Python.

To try it out, go ahead to your terminal and type:

$ pip install streamlit
then fire the server for demo apps:
$ streamlit hello

This is the latest Data Science video tutorial created on the channel :

Hope you enjoy it, and I will see in next video posts :)

✨ Streamlit Website: https://streamlit.io

🔗 Social Media

Facebook : https://www.facebook.com/bekbrace​​​​
Twitter : https://twitter.com/BekBrace
Instagram : https://www.instagram.com/bek_brace/
Tech Blog : ttps://dev.to/bekbrace​​​​
GitHub profile : https://github.com/BekBrace​​​
Website : https://bekbrace.com

Top comments (2)

Collapse
 
steelwolf180 profile image
Max Ong Zong Bao

Awesome post on streamlit, i love it ever since it came out.

Collapse
 
bekbrace profile image
Bek Brace

Thanks Max :) It's a solid quick platform to create powerful tools really

An Animated Guide to Node.js Event Loop

Node.js doesn’t stop from running other operations because of Libuv, a C++ library responsible for the event loop and asynchronously handling tasks such as network requests, DNS resolution, file system operations, data encryption, etc.

What happens under the hood when Node.js works on tasks such as database queries? We will explore it by following this piece of code step by step.