├── .gitignore ├── LICENSE ├── README.md ├── accurate-twilio-voice-call-recording-transcriptions-assemblyai ├── app.py ├── print_transcription.py ├── requirements.txt └── transcribe.py ├── ansible-rollbar-flask ├── app.py ├── deploy │ └── hosts ├── requirements.txt ├── template.env └── templates │ └── battlegrounds.html ├── auth-existing-flask-app ├── completed │ ├── app │ │ ├── __init__.py │ │ ├── models.py │ │ ├── routes.py │ │ ├── static │ │ │ ├── css │ │ │ │ ├── bootstrap.css │ │ │ │ └── dashboard.css │ │ │ └── js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── popper.min.js │ │ ├── templates │ │ │ ├── base.html │ │ │ ├── dashboard.html │ │ │ ├── nav.html │ │ │ ├── repositories.html │ │ │ └── sidenav.html │ │ └── utils.py │ ├── config.py │ ├── flaskdash.py │ ├── openidconnect_secrets.json.template │ └── requirements.txt └── start │ ├── app │ ├── __init__.py │ ├── models.py │ ├── routes.py │ ├── static │ │ ├── css │ │ │ ├── bootstrap.css │ │ │ └── dashboard.css │ │ └── js │ │ │ ├── bootstrap.min.js │ │ │ └── popper.min.js │ ├── templates │ │ ├── base.html │ │ ├── dashboard.html │ │ ├── nav.html │ │ ├── repositories.html │ │ └── sidenav.html │ └── utils.py │ ├── config.py │ ├── flaskdash.py │ └── requirements.txt ├── aws-lambda-python-2-7 └── lambda.py ├── aws-lambda-python-3-6 └── lambda.py ├── bar-charts-bokeh-bottle-python-3 ├── app.py └── requirements.txt ├── bar-charts-bokeh-flask-python-3 ├── app.py ├── requirements.txt └── templates │ └── chart.html ├── bootstrap-4-django-template ├── step1 │ └── djbootstrap4 │ │ ├── bootstrap4 │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── templates │ │ │ └── index.html │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ │ ├── db.sqlite3 │ │ ├── djbootstrap4 │ │ ├── __init__.py │ │ ├── asgi.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ │ └── manage.py └── step2 │ └── djbootstrap4 │ ├── bootstrap4 │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── index.html │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── db.sqlite3 │ ├── djbootstrap4 │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py │ └── manage.py ├── django-accurate-twilio-voice-transcriptions └── djtranscribe │ ├── caller │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── djtranscribe │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py │ ├── manage.py │ └── template.env ├── docker-bottle-mac ├── Dockerfile ├── app.py └── requirements.txt ├── docker-flask-mac ├── Dockerfile ├── app.py └── requirements.txt ├── first-steps-gitpython └── read_repo.py ├── flask-auth-okta ├── app.py ├── openidconnect_secrets.json.template └── template.env ├── generating-static-websites-pelican-jinja2-markdown ├── Makefile ├── content │ └── posts │ │ └── gunship.markdown ├── develop_server.sh ├── fabfile.py ├── pelicanconf.py ├── publishconf.py ├── requirements.txt └── theme │ └── templates │ ├── article.html │ ├── base.html │ └── index.html ├── maps-django-mapbox └── djmaps │ ├── djmaps │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py │ ├── manage.py │ ├── maps │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── default.html │ ├── tests.py │ ├── urls.py │ └── views.py │ └── requirements.txt ├── maps-flask-mapbox └── templates │ └── map.html ├── materialize-css-django-material-admin └── step1 │ └── djmaterial │ ├── db.sqlite3 │ ├── djmaterial │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py │ └── manage.py ├── monitor-aws-lambda-python-3-6 ├── hello-rollbar.zip ├── lambda_function.py └── requirements.txt ├── monitor-django-apps └── djmonitor │ ├── billions │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── billions.html │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── djmonitor │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py │ └── manage.py ├── monitor-flask-apps ├── app.py ├── requirements.txt ├── template.env └── templates │ └── battlegrounds.html ├── monitor-python-aws-lambda-sentry └── lambda_function.py ├── monitor-python-bottle-apps ├── app.py ├── requirements.txt └── template.env ├── pandas-covid-19 └── covid-19-cases-march-28-2020.csv ├── python-script-sentry ├── module_loader.py └── requirements.txt ├── render-markdown-django-3-0-django-markdown-view ├── requirements.txt ├── step1 │ └── djmdview │ │ ├── djmdview │ │ ├── __init__.py │ │ ├── asgi.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ │ ├── manage.py │ │ └── rendermarkdown │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ └── __init__.py │ │ ├── models.py │ │ ├── templates │ │ └── index.html │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py └── step2 │ └── djmdview │ ├── db.sqlite3 │ ├── djmdview │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py │ ├── manage.py │ └── rendermarkdown │ ├── README.md │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ └── __init__.py │ ├── models.py │ ├── templates │ └── index.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── report-errors-flask-web-apps-sentry ├── requirements.txt ├── step1 │ └── app.py └── step2 │ └── app.py ├── send-mms-picture-messages-python └── send_mms.py ├── send-sms-text-messages-python └── send_sms.py ├── sentry-handle-exceptions-django-projects ├── step1 │ └── djsentry │ │ ├── db.sqlite3 │ │ ├── djsentry │ │ ├── __init__.py │ │ ├── asgi.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ │ ├── errors │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── templates │ │ │ └── index.html │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ │ └── manage.py └── step2 │ └── djsentry │ ├── db.sqlite3 │ ├── djsentry │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py │ ├── errors │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── index.html │ ├── tests.py │ ├── urls.py │ └── views.py │ └── manage.py ├── track-daily-user-data-django-user-visit └── step1 │ └── djuservisit │ ├── db.sqlite3 │ ├── djuservisit │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py │ └── manage.py └── transcribe-speech-text-script ├── get_transcription.py ├── initiate_transcription.py ├── resp.txt └── upload_audio_file.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/README.md -------------------------------------------------------------------------------- /accurate-twilio-voice-call-recording-transcriptions-assemblyai/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/accurate-twilio-voice-call-recording-transcriptions-assemblyai/app.py -------------------------------------------------------------------------------- /accurate-twilio-voice-call-recording-transcriptions-assemblyai/print_transcription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/accurate-twilio-voice-call-recording-transcriptions-assemblyai/print_transcription.py -------------------------------------------------------------------------------- /accurate-twilio-voice-call-recording-transcriptions-assemblyai/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask==1.1.2 2 | requests==2.24.0 3 | twilio==6.45.2 4 | -------------------------------------------------------------------------------- /accurate-twilio-voice-call-recording-transcriptions-assemblyai/transcribe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/accurate-twilio-voice-call-recording-transcriptions-assemblyai/transcribe.py -------------------------------------------------------------------------------- /ansible-rollbar-flask/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/ansible-rollbar-flask/app.py -------------------------------------------------------------------------------- /ansible-rollbar-flask/deploy/hosts: -------------------------------------------------------------------------------- 1 | [dev] 2 | 192.168.1.1 3 | -------------------------------------------------------------------------------- /ansible-rollbar-flask/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/ansible-rollbar-flask/requirements.txt -------------------------------------------------------------------------------- /ansible-rollbar-flask/template.env: -------------------------------------------------------------------------------- 1 | # Rollbar token, found in project settings 2 | export ROLLBAR_SECRET='' 3 | -------------------------------------------------------------------------------- /ansible-rollbar-flask/templates/battlegrounds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/ansible-rollbar-flask/templates/battlegrounds.html -------------------------------------------------------------------------------- /auth-existing-flask-app/completed/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/auth-existing-flask-app/completed/app/__init__.py -------------------------------------------------------------------------------- /auth-existing-flask-app/completed/app/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /auth-existing-flask-app/completed/app/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/auth-existing-flask-app/completed/app/routes.py -------------------------------------------------------------------------------- /auth-existing-flask-app/completed/app/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/auth-existing-flask-app/completed/app/static/css/bootstrap.css -------------------------------------------------------------------------------- /auth-existing-flask-app/completed/app/static/css/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/auth-existing-flask-app/completed/app/static/css/dashboard.css -------------------------------------------------------------------------------- /auth-existing-flask-app/completed/app/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/auth-existing-flask-app/completed/app/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /auth-existing-flask-app/completed/app/static/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/auth-existing-flask-app/completed/app/static/js/popper.min.js -------------------------------------------------------------------------------- /auth-existing-flask-app/completed/app/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/auth-existing-flask-app/completed/app/templates/base.html -------------------------------------------------------------------------------- /auth-existing-flask-app/completed/app/templates/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/auth-existing-flask-app/completed/app/templates/dashboard.html -------------------------------------------------------------------------------- /auth-existing-flask-app/completed/app/templates/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/auth-existing-flask-app/completed/app/templates/nav.html -------------------------------------------------------------------------------- /auth-existing-flask-app/completed/app/templates/repositories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/auth-existing-flask-app/completed/app/templates/repositories.html -------------------------------------------------------------------------------- /auth-existing-flask-app/completed/app/templates/sidenav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/auth-existing-flask-app/completed/app/templates/sidenav.html -------------------------------------------------------------------------------- /auth-existing-flask-app/completed/app/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/auth-existing-flask-app/completed/app/utils.py -------------------------------------------------------------------------------- /auth-existing-flask-app/completed/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/auth-existing-flask-app/completed/config.py -------------------------------------------------------------------------------- /auth-existing-flask-app/completed/flaskdash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/auth-existing-flask-app/completed/flaskdash.py -------------------------------------------------------------------------------- /auth-existing-flask-app/completed/openidconnect_secrets.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/auth-existing-flask-app/completed/openidconnect_secrets.json.template -------------------------------------------------------------------------------- /auth-existing-flask-app/completed/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/auth-existing-flask-app/completed/requirements.txt -------------------------------------------------------------------------------- /auth-existing-flask-app/start/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/auth-existing-flask-app/start/app/__init__.py -------------------------------------------------------------------------------- /auth-existing-flask-app/start/app/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /auth-existing-flask-app/start/app/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/auth-existing-flask-app/start/app/routes.py -------------------------------------------------------------------------------- /auth-existing-flask-app/start/app/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/auth-existing-flask-app/start/app/static/css/bootstrap.css -------------------------------------------------------------------------------- /auth-existing-flask-app/start/app/static/css/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/auth-existing-flask-app/start/app/static/css/dashboard.css -------------------------------------------------------------------------------- /auth-existing-flask-app/start/app/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/auth-existing-flask-app/start/app/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /auth-existing-flask-app/start/app/static/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/auth-existing-flask-app/start/app/static/js/popper.min.js -------------------------------------------------------------------------------- /auth-existing-flask-app/start/app/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/auth-existing-flask-app/start/app/templates/base.html -------------------------------------------------------------------------------- /auth-existing-flask-app/start/app/templates/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/auth-existing-flask-app/start/app/templates/dashboard.html -------------------------------------------------------------------------------- /auth-existing-flask-app/start/app/templates/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/auth-existing-flask-app/start/app/templates/nav.html -------------------------------------------------------------------------------- /auth-existing-flask-app/start/app/templates/repositories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/auth-existing-flask-app/start/app/templates/repositories.html -------------------------------------------------------------------------------- /auth-existing-flask-app/start/app/templates/sidenav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/auth-existing-flask-app/start/app/templates/sidenav.html -------------------------------------------------------------------------------- /auth-existing-flask-app/start/app/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/auth-existing-flask-app/start/app/utils.py -------------------------------------------------------------------------------- /auth-existing-flask-app/start/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/auth-existing-flask-app/start/config.py -------------------------------------------------------------------------------- /auth-existing-flask-app/start/flaskdash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/auth-existing-flask-app/start/flaskdash.py -------------------------------------------------------------------------------- /auth-existing-flask-app/start/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/auth-existing-flask-app/start/requirements.txt -------------------------------------------------------------------------------- /aws-lambda-python-2-7/lambda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/aws-lambda-python-2-7/lambda.py -------------------------------------------------------------------------------- /aws-lambda-python-3-6/lambda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/aws-lambda-python-3-6/lambda.py -------------------------------------------------------------------------------- /bar-charts-bokeh-bottle-python-3/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/bar-charts-bokeh-bottle-python-3/app.py -------------------------------------------------------------------------------- /bar-charts-bokeh-bottle-python-3/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/bar-charts-bokeh-bottle-python-3/requirements.txt -------------------------------------------------------------------------------- /bar-charts-bokeh-flask-python-3/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/bar-charts-bokeh-flask-python-3/app.py -------------------------------------------------------------------------------- /bar-charts-bokeh-flask-python-3/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/bar-charts-bokeh-flask-python-3/requirements.txt -------------------------------------------------------------------------------- /bar-charts-bokeh-flask-python-3/templates/chart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/bar-charts-bokeh-flask-python-3/templates/chart.html -------------------------------------------------------------------------------- /bootstrap-4-django-template/step1/djbootstrap4/bootstrap4/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootstrap-4-django-template/step1/djbootstrap4/bootstrap4/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/bootstrap-4-django-template/step1/djbootstrap4/bootstrap4/admin.py -------------------------------------------------------------------------------- /bootstrap-4-django-template/step1/djbootstrap4/bootstrap4/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/bootstrap-4-django-template/step1/djbootstrap4/bootstrap4/apps.py -------------------------------------------------------------------------------- /bootstrap-4-django-template/step1/djbootstrap4/bootstrap4/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootstrap-4-django-template/step1/djbootstrap4/bootstrap4/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/bootstrap-4-django-template/step1/djbootstrap4/bootstrap4/models.py -------------------------------------------------------------------------------- /bootstrap-4-django-template/step1/djbootstrap4/bootstrap4/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/bootstrap-4-django-template/step1/djbootstrap4/bootstrap4/templates/index.html -------------------------------------------------------------------------------- /bootstrap-4-django-template/step1/djbootstrap4/bootstrap4/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/bootstrap-4-django-template/step1/djbootstrap4/bootstrap4/tests.py -------------------------------------------------------------------------------- /bootstrap-4-django-template/step1/djbootstrap4/bootstrap4/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/bootstrap-4-django-template/step1/djbootstrap4/bootstrap4/urls.py -------------------------------------------------------------------------------- /bootstrap-4-django-template/step1/djbootstrap4/bootstrap4/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/bootstrap-4-django-template/step1/djbootstrap4/bootstrap4/views.py -------------------------------------------------------------------------------- /bootstrap-4-django-template/step1/djbootstrap4/db.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootstrap-4-django-template/step1/djbootstrap4/djbootstrap4/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootstrap-4-django-template/step1/djbootstrap4/djbootstrap4/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/bootstrap-4-django-template/step1/djbootstrap4/djbootstrap4/asgi.py -------------------------------------------------------------------------------- /bootstrap-4-django-template/step1/djbootstrap4/djbootstrap4/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/bootstrap-4-django-template/step1/djbootstrap4/djbootstrap4/settings.py -------------------------------------------------------------------------------- /bootstrap-4-django-template/step1/djbootstrap4/djbootstrap4/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/bootstrap-4-django-template/step1/djbootstrap4/djbootstrap4/urls.py -------------------------------------------------------------------------------- /bootstrap-4-django-template/step1/djbootstrap4/djbootstrap4/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/bootstrap-4-django-template/step1/djbootstrap4/djbootstrap4/wsgi.py -------------------------------------------------------------------------------- /bootstrap-4-django-template/step1/djbootstrap4/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/bootstrap-4-django-template/step1/djbootstrap4/manage.py -------------------------------------------------------------------------------- /bootstrap-4-django-template/step2/djbootstrap4/bootstrap4/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootstrap-4-django-template/step2/djbootstrap4/bootstrap4/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/bootstrap-4-django-template/step2/djbootstrap4/bootstrap4/admin.py -------------------------------------------------------------------------------- /bootstrap-4-django-template/step2/djbootstrap4/bootstrap4/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/bootstrap-4-django-template/step2/djbootstrap4/bootstrap4/apps.py -------------------------------------------------------------------------------- /bootstrap-4-django-template/step2/djbootstrap4/bootstrap4/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootstrap-4-django-template/step2/djbootstrap4/bootstrap4/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/bootstrap-4-django-template/step2/djbootstrap4/bootstrap4/models.py -------------------------------------------------------------------------------- /bootstrap-4-django-template/step2/djbootstrap4/bootstrap4/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/bootstrap-4-django-template/step2/djbootstrap4/bootstrap4/templates/index.html -------------------------------------------------------------------------------- /bootstrap-4-django-template/step2/djbootstrap4/bootstrap4/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/bootstrap-4-django-template/step2/djbootstrap4/bootstrap4/tests.py -------------------------------------------------------------------------------- /bootstrap-4-django-template/step2/djbootstrap4/bootstrap4/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/bootstrap-4-django-template/step2/djbootstrap4/bootstrap4/urls.py -------------------------------------------------------------------------------- /bootstrap-4-django-template/step2/djbootstrap4/bootstrap4/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/bootstrap-4-django-template/step2/djbootstrap4/bootstrap4/views.py -------------------------------------------------------------------------------- /bootstrap-4-django-template/step2/djbootstrap4/db.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootstrap-4-django-template/step2/djbootstrap4/djbootstrap4/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootstrap-4-django-template/step2/djbootstrap4/djbootstrap4/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/bootstrap-4-django-template/step2/djbootstrap4/djbootstrap4/asgi.py -------------------------------------------------------------------------------- /bootstrap-4-django-template/step2/djbootstrap4/djbootstrap4/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/bootstrap-4-django-template/step2/djbootstrap4/djbootstrap4/settings.py -------------------------------------------------------------------------------- /bootstrap-4-django-template/step2/djbootstrap4/djbootstrap4/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/bootstrap-4-django-template/step2/djbootstrap4/djbootstrap4/urls.py -------------------------------------------------------------------------------- /bootstrap-4-django-template/step2/djbootstrap4/djbootstrap4/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/bootstrap-4-django-template/step2/djbootstrap4/djbootstrap4/wsgi.py -------------------------------------------------------------------------------- /bootstrap-4-django-template/step2/djbootstrap4/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/bootstrap-4-django-template/step2/djbootstrap4/manage.py -------------------------------------------------------------------------------- /django-accurate-twilio-voice-transcriptions/djtranscribe/caller/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-accurate-twilio-voice-transcriptions/djtranscribe/caller/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/django-accurate-twilio-voice-transcriptions/djtranscribe/caller/admin.py -------------------------------------------------------------------------------- /django-accurate-twilio-voice-transcriptions/djtranscribe/caller/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/django-accurate-twilio-voice-transcriptions/djtranscribe/caller/apps.py -------------------------------------------------------------------------------- /django-accurate-twilio-voice-transcriptions/djtranscribe/caller/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-accurate-twilio-voice-transcriptions/djtranscribe/caller/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/django-accurate-twilio-voice-transcriptions/djtranscribe/caller/models.py -------------------------------------------------------------------------------- /django-accurate-twilio-voice-transcriptions/djtranscribe/caller/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/django-accurate-twilio-voice-transcriptions/djtranscribe/caller/tests.py -------------------------------------------------------------------------------- /django-accurate-twilio-voice-transcriptions/djtranscribe/caller/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/django-accurate-twilio-voice-transcriptions/djtranscribe/caller/urls.py -------------------------------------------------------------------------------- /django-accurate-twilio-voice-transcriptions/djtranscribe/caller/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/django-accurate-twilio-voice-transcriptions/djtranscribe/caller/views.py -------------------------------------------------------------------------------- /django-accurate-twilio-voice-transcriptions/djtranscribe/djtranscribe/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django-accurate-twilio-voice-transcriptions/djtranscribe/djtranscribe/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/django-accurate-twilio-voice-transcriptions/djtranscribe/djtranscribe/asgi.py -------------------------------------------------------------------------------- /django-accurate-twilio-voice-transcriptions/djtranscribe/djtranscribe/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/django-accurate-twilio-voice-transcriptions/djtranscribe/djtranscribe/settings.py -------------------------------------------------------------------------------- /django-accurate-twilio-voice-transcriptions/djtranscribe/djtranscribe/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/django-accurate-twilio-voice-transcriptions/djtranscribe/djtranscribe/urls.py -------------------------------------------------------------------------------- /django-accurate-twilio-voice-transcriptions/djtranscribe/djtranscribe/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/django-accurate-twilio-voice-transcriptions/djtranscribe/djtranscribe/wsgi.py -------------------------------------------------------------------------------- /django-accurate-twilio-voice-transcriptions/djtranscribe/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/django-accurate-twilio-voice-transcriptions/djtranscribe/manage.py -------------------------------------------------------------------------------- /django-accurate-twilio-voice-transcriptions/djtranscribe/template.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/django-accurate-twilio-voice-transcriptions/djtranscribe/template.env -------------------------------------------------------------------------------- /docker-bottle-mac/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/docker-bottle-mac/Dockerfile -------------------------------------------------------------------------------- /docker-bottle-mac/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/docker-bottle-mac/app.py -------------------------------------------------------------------------------- /docker-bottle-mac/requirements.txt: -------------------------------------------------------------------------------- 1 | bottle==0.12.13 2 | -------------------------------------------------------------------------------- /docker-flask-mac/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/docker-flask-mac/Dockerfile -------------------------------------------------------------------------------- /docker-flask-mac/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/docker-flask-mac/app.py -------------------------------------------------------------------------------- /docker-flask-mac/requirements.txt: -------------------------------------------------------------------------------- 1 | flask==1.0.2 2 | -------------------------------------------------------------------------------- /first-steps-gitpython/read_repo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/first-steps-gitpython/read_repo.py -------------------------------------------------------------------------------- /flask-auth-okta/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/flask-auth-okta/app.py -------------------------------------------------------------------------------- /flask-auth-okta/openidconnect_secrets.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/flask-auth-okta/openidconnect_secrets.json.template -------------------------------------------------------------------------------- /flask-auth-okta/template.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/flask-auth-okta/template.env -------------------------------------------------------------------------------- /generating-static-websites-pelican-jinja2-markdown/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/generating-static-websites-pelican-jinja2-markdown/Makefile -------------------------------------------------------------------------------- /generating-static-websites-pelican-jinja2-markdown/content/posts/gunship.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/generating-static-websites-pelican-jinja2-markdown/content/posts/gunship.markdown -------------------------------------------------------------------------------- /generating-static-websites-pelican-jinja2-markdown/develop_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/generating-static-websites-pelican-jinja2-markdown/develop_server.sh -------------------------------------------------------------------------------- /generating-static-websites-pelican-jinja2-markdown/fabfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/generating-static-websites-pelican-jinja2-markdown/fabfile.py -------------------------------------------------------------------------------- /generating-static-websites-pelican-jinja2-markdown/pelicanconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/generating-static-websites-pelican-jinja2-markdown/pelicanconf.py -------------------------------------------------------------------------------- /generating-static-websites-pelican-jinja2-markdown/publishconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/generating-static-websites-pelican-jinja2-markdown/publishconf.py -------------------------------------------------------------------------------- /generating-static-websites-pelican-jinja2-markdown/requirements.txt: -------------------------------------------------------------------------------- 1 | markdown==2.6.8 2 | pelican==3.7.1 3 | -------------------------------------------------------------------------------- /generating-static-websites-pelican-jinja2-markdown/theme/templates/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/generating-static-websites-pelican-jinja2-markdown/theme/templates/article.html -------------------------------------------------------------------------------- /generating-static-websites-pelican-jinja2-markdown/theme/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/generating-static-websites-pelican-jinja2-markdown/theme/templates/base.html -------------------------------------------------------------------------------- /generating-static-websites-pelican-jinja2-markdown/theme/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/generating-static-websites-pelican-jinja2-markdown/theme/templates/index.html -------------------------------------------------------------------------------- /maps-django-mapbox/djmaps/djmaps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /maps-django-mapbox/djmaps/djmaps/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/maps-django-mapbox/djmaps/djmaps/settings.py -------------------------------------------------------------------------------- /maps-django-mapbox/djmaps/djmaps/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/maps-django-mapbox/djmaps/djmaps/urls.py -------------------------------------------------------------------------------- /maps-django-mapbox/djmaps/djmaps/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/maps-django-mapbox/djmaps/djmaps/wsgi.py -------------------------------------------------------------------------------- /maps-django-mapbox/djmaps/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/maps-django-mapbox/djmaps/manage.py -------------------------------------------------------------------------------- /maps-django-mapbox/djmaps/maps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /maps-django-mapbox/djmaps/maps/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/maps-django-mapbox/djmaps/maps/admin.py -------------------------------------------------------------------------------- /maps-django-mapbox/djmaps/maps/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/maps-django-mapbox/djmaps/maps/apps.py -------------------------------------------------------------------------------- /maps-django-mapbox/djmaps/maps/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /maps-django-mapbox/djmaps/maps/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/maps-django-mapbox/djmaps/maps/models.py -------------------------------------------------------------------------------- /maps-django-mapbox/djmaps/maps/templates/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/maps-django-mapbox/djmaps/maps/templates/default.html -------------------------------------------------------------------------------- /maps-django-mapbox/djmaps/maps/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/maps-django-mapbox/djmaps/maps/tests.py -------------------------------------------------------------------------------- /maps-django-mapbox/djmaps/maps/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/maps-django-mapbox/djmaps/maps/urls.py -------------------------------------------------------------------------------- /maps-django-mapbox/djmaps/maps/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/maps-django-mapbox/djmaps/maps/views.py -------------------------------------------------------------------------------- /maps-django-mapbox/djmaps/requirements.txt: -------------------------------------------------------------------------------- 1 | django==2.0.5 2 | -------------------------------------------------------------------------------- /maps-flask-mapbox/templates/map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/maps-flask-mapbox/templates/map.html -------------------------------------------------------------------------------- /materialize-css-django-material-admin/step1/djmaterial/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/materialize-css-django-material-admin/step1/djmaterial/db.sqlite3 -------------------------------------------------------------------------------- /materialize-css-django-material-admin/step1/djmaterial/djmaterial/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /materialize-css-django-material-admin/step1/djmaterial/djmaterial/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/materialize-css-django-material-admin/step1/djmaterial/djmaterial/asgi.py -------------------------------------------------------------------------------- /materialize-css-django-material-admin/step1/djmaterial/djmaterial/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/materialize-css-django-material-admin/step1/djmaterial/djmaterial/settings.py -------------------------------------------------------------------------------- /materialize-css-django-material-admin/step1/djmaterial/djmaterial/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/materialize-css-django-material-admin/step1/djmaterial/djmaterial/urls.py -------------------------------------------------------------------------------- /materialize-css-django-material-admin/step1/djmaterial/djmaterial/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/materialize-css-django-material-admin/step1/djmaterial/djmaterial/wsgi.py -------------------------------------------------------------------------------- /materialize-css-django-material-admin/step1/djmaterial/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/materialize-css-django-material-admin/step1/djmaterial/manage.py -------------------------------------------------------------------------------- /monitor-aws-lambda-python-3-6/hello-rollbar.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/monitor-aws-lambda-python-3-6/hello-rollbar.zip -------------------------------------------------------------------------------- /monitor-aws-lambda-python-3-6/lambda_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/monitor-aws-lambda-python-3-6/lambda_function.py -------------------------------------------------------------------------------- /monitor-aws-lambda-python-3-6/requirements.txt: -------------------------------------------------------------------------------- 1 | rollbar==0.13.18 2 | -------------------------------------------------------------------------------- /monitor-django-apps/djmonitor/billions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /monitor-django-apps/djmonitor/billions/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/monitor-django-apps/djmonitor/billions/admin.py -------------------------------------------------------------------------------- /monitor-django-apps/djmonitor/billions/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/monitor-django-apps/djmonitor/billions/apps.py -------------------------------------------------------------------------------- /monitor-django-apps/djmonitor/billions/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /monitor-django-apps/djmonitor/billions/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/monitor-django-apps/djmonitor/billions/models.py -------------------------------------------------------------------------------- /monitor-django-apps/djmonitor/billions/templates/billions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/monitor-django-apps/djmonitor/billions/templates/billions.html -------------------------------------------------------------------------------- /monitor-django-apps/djmonitor/billions/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/monitor-django-apps/djmonitor/billions/tests.py -------------------------------------------------------------------------------- /monitor-django-apps/djmonitor/billions/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/monitor-django-apps/djmonitor/billions/urls.py -------------------------------------------------------------------------------- /monitor-django-apps/djmonitor/billions/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/monitor-django-apps/djmonitor/billions/views.py -------------------------------------------------------------------------------- /monitor-django-apps/djmonitor/djmonitor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /monitor-django-apps/djmonitor/djmonitor/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/monitor-django-apps/djmonitor/djmonitor/settings.py -------------------------------------------------------------------------------- /monitor-django-apps/djmonitor/djmonitor/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/monitor-django-apps/djmonitor/djmonitor/urls.py -------------------------------------------------------------------------------- /monitor-django-apps/djmonitor/djmonitor/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/monitor-django-apps/djmonitor/djmonitor/wsgi.py -------------------------------------------------------------------------------- /monitor-django-apps/djmonitor/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/monitor-django-apps/djmonitor/manage.py -------------------------------------------------------------------------------- /monitor-flask-apps/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/monitor-flask-apps/app.py -------------------------------------------------------------------------------- /monitor-flask-apps/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/monitor-flask-apps/requirements.txt -------------------------------------------------------------------------------- /monitor-flask-apps/template.env: -------------------------------------------------------------------------------- 1 | # Rollbar token, found in project settings 2 | export ROLLBAR_SECRET='' 3 | -------------------------------------------------------------------------------- /monitor-flask-apps/templates/battlegrounds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/monitor-flask-apps/templates/battlegrounds.html -------------------------------------------------------------------------------- /monitor-python-aws-lambda-sentry/lambda_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/monitor-python-aws-lambda-sentry/lambda_function.py -------------------------------------------------------------------------------- /monitor-python-bottle-apps/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/monitor-python-bottle-apps/app.py -------------------------------------------------------------------------------- /monitor-python-bottle-apps/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/monitor-python-bottle-apps/requirements.txt -------------------------------------------------------------------------------- /monitor-python-bottle-apps/template.env: -------------------------------------------------------------------------------- 1 | # Rollbar token, found in project settings 2 | export ROLLBAR_SECRET='' 3 | -------------------------------------------------------------------------------- /pandas-covid-19/covid-19-cases-march-28-2020.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/pandas-covid-19/covid-19-cases-march-28-2020.csv -------------------------------------------------------------------------------- /python-script-sentry/module_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/python-script-sentry/module_loader.py -------------------------------------------------------------------------------- /python-script-sentry/requirements.txt: -------------------------------------------------------------------------------- 1 | sentry-sdk>=0.14.4 2 | -------------------------------------------------------------------------------- /render-markdown-django-3-0-django-markdown-view/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/render-markdown-django-3-0-django-markdown-view/requirements.txt -------------------------------------------------------------------------------- /render-markdown-django-3-0-django-markdown-view/step1/djmdview/djmdview/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /render-markdown-django-3-0-django-markdown-view/step1/djmdview/djmdview/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/render-markdown-django-3-0-django-markdown-view/step1/djmdview/djmdview/asgi.py -------------------------------------------------------------------------------- /render-markdown-django-3-0-django-markdown-view/step1/djmdview/djmdview/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/render-markdown-django-3-0-django-markdown-view/step1/djmdview/djmdview/settings.py -------------------------------------------------------------------------------- /render-markdown-django-3-0-django-markdown-view/step1/djmdview/djmdview/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/render-markdown-django-3-0-django-markdown-view/step1/djmdview/djmdview/urls.py -------------------------------------------------------------------------------- /render-markdown-django-3-0-django-markdown-view/step1/djmdview/djmdview/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/render-markdown-django-3-0-django-markdown-view/step1/djmdview/djmdview/wsgi.py -------------------------------------------------------------------------------- /render-markdown-django-3-0-django-markdown-view/step1/djmdview/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/render-markdown-django-3-0-django-markdown-view/step1/djmdview/manage.py -------------------------------------------------------------------------------- /render-markdown-django-3-0-django-markdown-view/step1/djmdview/rendermarkdown/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /render-markdown-django-3-0-django-markdown-view/step1/djmdview/rendermarkdown/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/render-markdown-django-3-0-django-markdown-view/step1/djmdview/rendermarkdown/admin.py -------------------------------------------------------------------------------- /render-markdown-django-3-0-django-markdown-view/step1/djmdview/rendermarkdown/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/render-markdown-django-3-0-django-markdown-view/step1/djmdview/rendermarkdown/apps.py -------------------------------------------------------------------------------- /render-markdown-django-3-0-django-markdown-view/step1/djmdview/rendermarkdown/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /render-markdown-django-3-0-django-markdown-view/step1/djmdview/rendermarkdown/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/render-markdown-django-3-0-django-markdown-view/step1/djmdview/rendermarkdown/models.py -------------------------------------------------------------------------------- /render-markdown-django-3-0-django-markdown-view/step1/djmdview/rendermarkdown/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/render-markdown-django-3-0-django-markdown-view/step1/djmdview/rendermarkdown/templates/index.html -------------------------------------------------------------------------------- /render-markdown-django-3-0-django-markdown-view/step1/djmdview/rendermarkdown/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/render-markdown-django-3-0-django-markdown-view/step1/djmdview/rendermarkdown/tests.py -------------------------------------------------------------------------------- /render-markdown-django-3-0-django-markdown-view/step1/djmdview/rendermarkdown/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/render-markdown-django-3-0-django-markdown-view/step1/djmdview/rendermarkdown/urls.py -------------------------------------------------------------------------------- /render-markdown-django-3-0-django-markdown-view/step1/djmdview/rendermarkdown/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/render-markdown-django-3-0-django-markdown-view/step1/djmdview/rendermarkdown/views.py -------------------------------------------------------------------------------- /render-markdown-django-3-0-django-markdown-view/step2/djmdview/db.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /render-markdown-django-3-0-django-markdown-view/step2/djmdview/djmdview/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /render-markdown-django-3-0-django-markdown-view/step2/djmdview/djmdview/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/render-markdown-django-3-0-django-markdown-view/step2/djmdview/djmdview/asgi.py -------------------------------------------------------------------------------- /render-markdown-django-3-0-django-markdown-view/step2/djmdview/djmdview/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/render-markdown-django-3-0-django-markdown-view/step2/djmdview/djmdview/settings.py -------------------------------------------------------------------------------- /render-markdown-django-3-0-django-markdown-view/step2/djmdview/djmdview/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/render-markdown-django-3-0-django-markdown-view/step2/djmdview/djmdview/urls.py -------------------------------------------------------------------------------- /render-markdown-django-3-0-django-markdown-view/step2/djmdview/djmdview/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/render-markdown-django-3-0-django-markdown-view/step2/djmdview/djmdview/wsgi.py -------------------------------------------------------------------------------- /render-markdown-django-3-0-django-markdown-view/step2/djmdview/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/render-markdown-django-3-0-django-markdown-view/step2/djmdview/manage.py -------------------------------------------------------------------------------- /render-markdown-django-3-0-django-markdown-view/step2/djmdview/rendermarkdown/README.md: -------------------------------------------------------------------------------- 1 | # hello world! 2 | -------------------------------------------------------------------------------- /render-markdown-django-3-0-django-markdown-view/step2/djmdview/rendermarkdown/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /render-markdown-django-3-0-django-markdown-view/step2/djmdview/rendermarkdown/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/render-markdown-django-3-0-django-markdown-view/step2/djmdview/rendermarkdown/admin.py -------------------------------------------------------------------------------- /render-markdown-django-3-0-django-markdown-view/step2/djmdview/rendermarkdown/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/render-markdown-django-3-0-django-markdown-view/step2/djmdview/rendermarkdown/apps.py -------------------------------------------------------------------------------- /render-markdown-django-3-0-django-markdown-view/step2/djmdview/rendermarkdown/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /render-markdown-django-3-0-django-markdown-view/step2/djmdview/rendermarkdown/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/render-markdown-django-3-0-django-markdown-view/step2/djmdview/rendermarkdown/models.py -------------------------------------------------------------------------------- /render-markdown-django-3-0-django-markdown-view/step2/djmdview/rendermarkdown/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/render-markdown-django-3-0-django-markdown-view/step2/djmdview/rendermarkdown/templates/index.html -------------------------------------------------------------------------------- /render-markdown-django-3-0-django-markdown-view/step2/djmdview/rendermarkdown/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/render-markdown-django-3-0-django-markdown-view/step2/djmdview/rendermarkdown/tests.py -------------------------------------------------------------------------------- /render-markdown-django-3-0-django-markdown-view/step2/djmdview/rendermarkdown/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/render-markdown-django-3-0-django-markdown-view/step2/djmdview/rendermarkdown/urls.py -------------------------------------------------------------------------------- /render-markdown-django-3-0-django-markdown-view/step2/djmdview/rendermarkdown/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/render-markdown-django-3-0-django-markdown-view/step2/djmdview/rendermarkdown/views.py -------------------------------------------------------------------------------- /report-errors-flask-web-apps-sentry/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask==1.1.2 2 | sentry-sdk[flask]==0.15.1 3 | -------------------------------------------------------------------------------- /report-errors-flask-web-apps-sentry/step1/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/report-errors-flask-web-apps-sentry/step1/app.py -------------------------------------------------------------------------------- /report-errors-flask-web-apps-sentry/step2/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/report-errors-flask-web-apps-sentry/step2/app.py -------------------------------------------------------------------------------- /send-mms-picture-messages-python/send_mms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/send-mms-picture-messages-python/send_mms.py -------------------------------------------------------------------------------- /send-sms-text-messages-python/send_sms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/send-sms-text-messages-python/send_sms.py -------------------------------------------------------------------------------- /sentry-handle-exceptions-django-projects/step1/djsentry/db.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sentry-handle-exceptions-django-projects/step1/djsentry/djsentry/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sentry-handle-exceptions-django-projects/step1/djsentry/djsentry/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/sentry-handle-exceptions-django-projects/step1/djsentry/djsentry/asgi.py -------------------------------------------------------------------------------- /sentry-handle-exceptions-django-projects/step1/djsentry/djsentry/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/sentry-handle-exceptions-django-projects/step1/djsentry/djsentry/settings.py -------------------------------------------------------------------------------- /sentry-handle-exceptions-django-projects/step1/djsentry/djsentry/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/sentry-handle-exceptions-django-projects/step1/djsentry/djsentry/urls.py -------------------------------------------------------------------------------- /sentry-handle-exceptions-django-projects/step1/djsentry/djsentry/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/sentry-handle-exceptions-django-projects/step1/djsentry/djsentry/wsgi.py -------------------------------------------------------------------------------- /sentry-handle-exceptions-django-projects/step1/djsentry/errors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sentry-handle-exceptions-django-projects/step1/djsentry/errors/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/sentry-handle-exceptions-django-projects/step1/djsentry/errors/admin.py -------------------------------------------------------------------------------- /sentry-handle-exceptions-django-projects/step1/djsentry/errors/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/sentry-handle-exceptions-django-projects/step1/djsentry/errors/apps.py -------------------------------------------------------------------------------- /sentry-handle-exceptions-django-projects/step1/djsentry/errors/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sentry-handle-exceptions-django-projects/step1/djsentry/errors/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/sentry-handle-exceptions-django-projects/step1/djsentry/errors/models.py -------------------------------------------------------------------------------- /sentry-handle-exceptions-django-projects/step1/djsentry/errors/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/sentry-handle-exceptions-django-projects/step1/djsentry/errors/templates/index.html -------------------------------------------------------------------------------- /sentry-handle-exceptions-django-projects/step1/djsentry/errors/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/sentry-handle-exceptions-django-projects/step1/djsentry/errors/tests.py -------------------------------------------------------------------------------- /sentry-handle-exceptions-django-projects/step1/djsentry/errors/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/sentry-handle-exceptions-django-projects/step1/djsentry/errors/urls.py -------------------------------------------------------------------------------- /sentry-handle-exceptions-django-projects/step1/djsentry/errors/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/sentry-handle-exceptions-django-projects/step1/djsentry/errors/views.py -------------------------------------------------------------------------------- /sentry-handle-exceptions-django-projects/step1/djsentry/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/sentry-handle-exceptions-django-projects/step1/djsentry/manage.py -------------------------------------------------------------------------------- /sentry-handle-exceptions-django-projects/step2/djsentry/db.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sentry-handle-exceptions-django-projects/step2/djsentry/djsentry/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sentry-handle-exceptions-django-projects/step2/djsentry/djsentry/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/sentry-handle-exceptions-django-projects/step2/djsentry/djsentry/asgi.py -------------------------------------------------------------------------------- /sentry-handle-exceptions-django-projects/step2/djsentry/djsentry/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/sentry-handle-exceptions-django-projects/step2/djsentry/djsentry/settings.py -------------------------------------------------------------------------------- /sentry-handle-exceptions-django-projects/step2/djsentry/djsentry/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/sentry-handle-exceptions-django-projects/step2/djsentry/djsentry/urls.py -------------------------------------------------------------------------------- /sentry-handle-exceptions-django-projects/step2/djsentry/djsentry/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/sentry-handle-exceptions-django-projects/step2/djsentry/djsentry/wsgi.py -------------------------------------------------------------------------------- /sentry-handle-exceptions-django-projects/step2/djsentry/errors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sentry-handle-exceptions-django-projects/step2/djsentry/errors/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/sentry-handle-exceptions-django-projects/step2/djsentry/errors/admin.py -------------------------------------------------------------------------------- /sentry-handle-exceptions-django-projects/step2/djsentry/errors/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/sentry-handle-exceptions-django-projects/step2/djsentry/errors/apps.py -------------------------------------------------------------------------------- /sentry-handle-exceptions-django-projects/step2/djsentry/errors/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sentry-handle-exceptions-django-projects/step2/djsentry/errors/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/sentry-handle-exceptions-django-projects/step2/djsentry/errors/models.py -------------------------------------------------------------------------------- /sentry-handle-exceptions-django-projects/step2/djsentry/errors/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/sentry-handle-exceptions-django-projects/step2/djsentry/errors/templates/index.html -------------------------------------------------------------------------------- /sentry-handle-exceptions-django-projects/step2/djsentry/errors/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/sentry-handle-exceptions-django-projects/step2/djsentry/errors/tests.py -------------------------------------------------------------------------------- /sentry-handle-exceptions-django-projects/step2/djsentry/errors/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/sentry-handle-exceptions-django-projects/step2/djsentry/errors/urls.py -------------------------------------------------------------------------------- /sentry-handle-exceptions-django-projects/step2/djsentry/errors/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/sentry-handle-exceptions-django-projects/step2/djsentry/errors/views.py -------------------------------------------------------------------------------- /sentry-handle-exceptions-django-projects/step2/djsentry/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/sentry-handle-exceptions-django-projects/step2/djsentry/manage.py -------------------------------------------------------------------------------- /track-daily-user-data-django-user-visit/step1/djuservisit/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/track-daily-user-data-django-user-visit/step1/djuservisit/db.sqlite3 -------------------------------------------------------------------------------- /track-daily-user-data-django-user-visit/step1/djuservisit/djuservisit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /track-daily-user-data-django-user-visit/step1/djuservisit/djuservisit/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/track-daily-user-data-django-user-visit/step1/djuservisit/djuservisit/asgi.py -------------------------------------------------------------------------------- /track-daily-user-data-django-user-visit/step1/djuservisit/djuservisit/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/track-daily-user-data-django-user-visit/step1/djuservisit/djuservisit/settings.py -------------------------------------------------------------------------------- /track-daily-user-data-django-user-visit/step1/djuservisit/djuservisit/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/track-daily-user-data-django-user-visit/step1/djuservisit/djuservisit/urls.py -------------------------------------------------------------------------------- /track-daily-user-data-django-user-visit/step1/djuservisit/djuservisit/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/track-daily-user-data-django-user-visit/step1/djuservisit/djuservisit/wsgi.py -------------------------------------------------------------------------------- /track-daily-user-data-django-user-visit/step1/djuservisit/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/track-daily-user-data-django-user-visit/step1/djuservisit/manage.py -------------------------------------------------------------------------------- /transcribe-speech-text-script/get_transcription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/transcribe-speech-text-script/get_transcription.py -------------------------------------------------------------------------------- /transcribe-speech-text-script/initiate_transcription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/transcribe-speech-text-script/initiate_transcription.py -------------------------------------------------------------------------------- /transcribe-speech-text-script/resp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/transcribe-speech-text-script/resp.txt -------------------------------------------------------------------------------- /transcribe-speech-text-script/upload_audio_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstackpython/blog-code-examples/HEAD/transcribe-speech-text-script/upload_audio_file.py --------------------------------------------------------------------------------