Streamlit is an open-source Python library that allows you to create web applications quickly and easily. With Streamlit, you can turn your data analysis and machine learning models into interactive web applications that can be easily shared and accessed by others.
For better understanding click here to read my blog on Streamlit.
This is a demo app allows user to see closing stock prices and volumes of a few companies. This project demonstrates the basic structure of streamlit apps, how to take input and how to visualize data.
Click here to visit the app.
(1) Apple
(2) Google
(3) Meta
(4) Amazon
(5) Tesla
(6) Johnson & Johnson
(7) Exxon Mobil Corp
[1] Clone this repo in your local computer.
[2] Create virtaul environment. Open command prompt in the same directory and run the following command,
python -m venv venv
This will create a virtual environment for the project.(You can create virtual environment by any preffered method)
[3] Activate the vitual environment, for that run the below command,
venv\Scripts\activate
[4] Install the requirements of the project.
pip install -r requirements.txt
[5] The project is ready to run. Execute the following command,
streamlit run streamlit-app.py