├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── app.py ├── instagram.py ├── requirements.txt ├── runtime.txt └── templates ├── display.html ├── downloadpost.html ├── index.html └── post.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberboysumanjay/InstaFlask/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberboysumanjay/InstaFlask/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app --log-file=- 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberboysumanjay/InstaFlask/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberboysumanjay/InstaFlask/HEAD/app.json -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberboysumanjay/InstaFlask/HEAD/app.py -------------------------------------------------------------------------------- /instagram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberboysumanjay/InstaFlask/HEAD/instagram.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | gunicorn 3 | httplib2 4 | requests 5 | instaloader 6 | -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.6.8 2 | -------------------------------------------------------------------------------- /templates/display.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberboysumanjay/InstaFlask/HEAD/templates/display.html -------------------------------------------------------------------------------- /templates/downloadpost.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberboysumanjay/InstaFlask/HEAD/templates/downloadpost.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberboysumanjay/InstaFlask/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberboysumanjay/InstaFlask/HEAD/templates/post.html --------------------------------------------------------------------------------