├── .gitignore ├── Procfile ├── README.md ├── app.py ├── requirements.txt └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | myvenv/ 2 | *.pyc 3 | -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilkumarsingh/facebook-messenger-bot/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilkumarsingh/facebook-messenger-bot/HEAD/app.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilkumarsingh/facebook-messenger-bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilkumarsingh/facebook-messenger-bot/HEAD/utils.py --------------------------------------------------------------------------------