├── .gitignore ├── LICENSE ├── README.md ├── requirements.txt └── yomamabot ├── db.sqlite3 ├── fb_yomamabot ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── manage.py └── yomamabot ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayabhay/django-facebook-messenger-bot-tutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayabhay/django-facebook-messenger-bot-tutorial/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayabhay/django-facebook-messenger-bot-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Django==1.9.6 2 | requests==2.10.0 3 | -------------------------------------------------------------------------------- /yomamabot/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayabhay/django-facebook-messenger-bot-tutorial/HEAD/yomamabot/db.sqlite3 -------------------------------------------------------------------------------- /yomamabot/fb_yomamabot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yomamabot/fb_yomamabot/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayabhay/django-facebook-messenger-bot-tutorial/HEAD/yomamabot/fb_yomamabot/admin.py -------------------------------------------------------------------------------- /yomamabot/fb_yomamabot/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayabhay/django-facebook-messenger-bot-tutorial/HEAD/yomamabot/fb_yomamabot/apps.py -------------------------------------------------------------------------------- /yomamabot/fb_yomamabot/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yomamabot/fb_yomamabot/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayabhay/django-facebook-messenger-bot-tutorial/HEAD/yomamabot/fb_yomamabot/models.py -------------------------------------------------------------------------------- /yomamabot/fb_yomamabot/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayabhay/django-facebook-messenger-bot-tutorial/HEAD/yomamabot/fb_yomamabot/tests.py -------------------------------------------------------------------------------- /yomamabot/fb_yomamabot/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayabhay/django-facebook-messenger-bot-tutorial/HEAD/yomamabot/fb_yomamabot/urls.py -------------------------------------------------------------------------------- /yomamabot/fb_yomamabot/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayabhay/django-facebook-messenger-bot-tutorial/HEAD/yomamabot/fb_yomamabot/views.py -------------------------------------------------------------------------------- /yomamabot/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayabhay/django-facebook-messenger-bot-tutorial/HEAD/yomamabot/manage.py -------------------------------------------------------------------------------- /yomamabot/yomamabot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yomamabot/yomamabot/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayabhay/django-facebook-messenger-bot-tutorial/HEAD/yomamabot/yomamabot/settings.py -------------------------------------------------------------------------------- /yomamabot/yomamabot/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayabhay/django-facebook-messenger-bot-tutorial/HEAD/yomamabot/yomamabot/urls.py -------------------------------------------------------------------------------- /yomamabot/yomamabot/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayabhay/django-facebook-messenger-bot-tutorial/HEAD/yomamabot/yomamabot/wsgi.py --------------------------------------------------------------------------------