- Upload CSV File (Done)
- Data Visualization (Ongoing)
- Data Cleanup
- Feature Selection (Basic Version Done)
- Classification (Basic Version Done)
-
Build the Container using Docker
$ docker image build -t streamlit:app .
-
Now, run the docker image on port 8501 (default for Streamlit Apps)
$ docker container run -p 8501:8501 -d streamlit:app
-
Create and Activate Virtual Environment using Conda
$ conda create --name streamlit_app python=3.7 $ source activate streamlit_app
or venv
$ python3 -m venv streamlit_app $ source streamlit_app/bin/activate
-
Install the
requirements.txt
file$ pip install -r requirements.txt
-
Run the app
$ streamlit run app.py
- awesome-streamlit: List of Awesome Streamlit Apps
- Streamlit App Gallery: Official Streamlit Apps Gallery
- Best-of: Best-of lists with Python and other languages
- Best-of Streamlit: Best-of list of Streamlit Apps
____ _ _ ____
/ ___|| |__ __ _ _ __ | |_ ___ | _ \ ___ _ _
\___ \| '_ \ / _` | '_ \| __/ _ \ | |_) / _ \| | | |
___) | | | | (_| | | | | || (_) | | _ < (_) | |_| |
|____/|_| |_|\__,_|_| |_|\__\___/ |_| \_\___/ \__, |
|___/
Created TextArt using patorjk.com