https://github.com/manulthanura/webapp-01
Create a personal website using Python and the Streamlit library. This website will be able to serve as a place for you to share your thoughts, projects, and anything else you want.
https://github.com/manulthanura/webapp-01
python streamlit
Last synced: about 1 year ago
JSON representation
Create a personal website using Python and the Streamlit library. This website will be able to serve as a place for you to share your thoughts, projects, and anything else you want.
- Host: GitHub
- URL: https://github.com/manulthanura/webapp-01
- Owner: manulthanura
- License: unlicense
- Created: 2023-01-22T05:09:26.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-02-29T09:32:51.000Z (over 2 years ago)
- Last Synced: 2025-02-07T08:16:59.191Z (over 1 year ago)
- Topics: python, streamlit
- Language: Python
- Homepage: https://webapp-01.streamlit.app
- Size: 13.7 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Use Streamlit to create a personal website
Create a personal website using Python and the Streamlit library. This website will be able to serve as a place for you to share your thoughts, projects, and anything else you want.
## Requirements
```
streamlit_lottie==0.0.2
streamlit==1.3.0
requests==2.24.0
Pillow==8.4.0
protobuf~=3.19.0
watchdog==2.1.8
```
## Run the app
* Terminal
```
# vanilla terminal
streamlit run app.py
# poetry
poetry add `cat requirements.txt`
poetry run streamlit run app.py
# quit
ctrl + c
```
* VSCode
* Open the repo directory in VSCode
* Open `app.py`
* Start debugging with `F5`
* Stop debugging with `Shift` + `F5`