├── .github └── stale.yml ├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── chromedriver ├── details_soup.py ├── main.py ├── requirements.txt ├── send_mail.py ├── templates └── 404.html └── util.py /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhijeet-reddy/Competitive_Programming_Score_API/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | __pycache__ 3 | .DS_Store 4 | venv/ 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhijeet-reddy/Competitive_Programming_Score_API/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn main:app 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhijeet-reddy/Competitive_Programming_Score_API/HEAD/README.md -------------------------------------------------------------------------------- /chromedriver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhijeet-reddy/Competitive_Programming_Score_API/HEAD/chromedriver -------------------------------------------------------------------------------- /details_soup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhijeet-reddy/Competitive_Programming_Score_API/HEAD/details_soup.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhijeet-reddy/Competitive_Programming_Score_API/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhijeet-reddy/Competitive_Programming_Score_API/HEAD/requirements.txt -------------------------------------------------------------------------------- /send_mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhijeet-reddy/Competitive_Programming_Score_API/HEAD/send_mail.py -------------------------------------------------------------------------------- /templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhijeet-reddy/Competitive_Programming_Score_API/HEAD/templates/404.html -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhijeet-reddy/Competitive_Programming_Score_API/HEAD/util.py --------------------------------------------------------------------------------