Posts

Showing posts from October, 2025

my Python journey: streamlit...

First off I researched adn chased down a LOT of options...  For example, I had never heard of notebooks on Python, apparently:  Juypter and Marimo are options...  https://molab.marimo.io/notebooks BUT I have yet to understand why I might use them... after looking for weeks and flirting with a few options, I came across STREAMLIT: What is streamlit? Streamlit is an open-source Python library that allows you to create interactive, web-based applications quickly and easily, primarily for data-driven projects, dashboards, or tools like the Gmail draft response app in your code. It’s designed to simplify the process of building web apps without requiring extensive web development knowledge (e.g., HTML, CSS, or JavaScript). Key Features of Streamlit Simple Syntax : You write Python code, and Streamlit turns it into a web app with minimal effort. For example, using st.title() , st.button() , or st.text_area() creates interactive UI elements. Interactive Widgets : Streamlit pro...