├── .streamlit └── config.toml ├── LICENSE ├── Procfile ├── README.md ├── app.py ├── images ├── demo.gif ├── githublogo.png └── header.PNG ├── requirements.txt └── styles.css /.streamlit/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/Github-Shoutout/HEAD/.streamlit/config.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/Github-Shoutout/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/Github-Shoutout/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/Github-Shoutout/HEAD/app.py -------------------------------------------------------------------------------- /images/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/Github-Shoutout/HEAD/images/demo.gif -------------------------------------------------------------------------------- /images/githublogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/Github-Shoutout/HEAD/images/githublogo.png -------------------------------------------------------------------------------- /images/header.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/Github-Shoutout/HEAD/images/header.PNG -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/Github-Shoutout/HEAD/requirements.txt -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadpls/Github-Shoutout/HEAD/styles.css --------------------------------------------------------------------------------