├── .gitignore ├── Procfile ├── README.md ├── app.py ├── requirements.txt ├── runtime.txt └── uwsgi.ini /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | *.pyc -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stangatimu/safaricom-daraja-api-stk-push-python/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stangatimu/safaricom-daraja-api-stk-push-python/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stangatimu/safaricom-daraja-api-stk-push-python/HEAD/app.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stangatimu/safaricom-daraja-api-stk-push-python/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.6.7 -------------------------------------------------------------------------------- /uwsgi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stangatimu/safaricom-daraja-api-stk-push-python/HEAD/uwsgi.ini --------------------------------------------------------------------------------