My R&D on Streamlit UX Framework
Streamlit is an open-source Python framework for building data applications with minimal code. It turns Python scripts into interactive web apps without requiring HTML, CSS, or JavaScript knowledge. The idea behind this UX framework is like write a Python script, and Streamlit automatically creates a web interface. The fundamental concept in Streamlit is like the script reruns on every interaction and think like the script is a function that gets called on every user interaction. Streamlit is gaining traction among developers working with large language models (LLMs) for its ability to streamline web application development. P.C: Google Images Installation & Running: # Install C:\Users\Admin> pip install streamlit # Create a file: app.py # Run it C:\Users\Admin> streamlit run app.py The app opens automatically in your browser at http://localhost:8501 The simple python script used to display the UI elements in the browser are shown below. We can build the simple graphs using ...