├── .gitattributes ├── .gitignore ├── FUNDING.yml ├── LICENSE ├── Procfile ├── README.md ├── app.py ├── helper.py ├── presentation ├── rt32.png └── vedio.gif ├── requirements.txt ├── samples └── sample.zip ├── setup.sh └── temp └── empty.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydaycodings/Data-Analysis-Web-App/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydaycodings/Data-Analysis-Web-App/HEAD/.gitignore -------------------------------------------------------------------------------- /FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: everydaycodings 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydaycodings/Data-Analysis-Web-App/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: sh setup.sh && streamlit run app.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydaycodings/Data-Analysis-Web-App/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydaycodings/Data-Analysis-Web-App/HEAD/app.py -------------------------------------------------------------------------------- /helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydaycodings/Data-Analysis-Web-App/HEAD/helper.py -------------------------------------------------------------------------------- /presentation/rt32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydaycodings/Data-Analysis-Web-App/HEAD/presentation/rt32.png -------------------------------------------------------------------------------- /presentation/vedio.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydaycodings/Data-Analysis-Web-App/HEAD/presentation/vedio.gif -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydaycodings/Data-Analysis-Web-App/HEAD/requirements.txt -------------------------------------------------------------------------------- /samples/sample.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydaycodings/Data-Analysis-Web-App/HEAD/samples/sample.zip -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everydaycodings/Data-Analysis-Web-App/HEAD/setup.sh -------------------------------------------------------------------------------- /temp/empty.txt: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------