Asyncio basic II
Tutorial on how to use Asyncio in a Jupyter Notebook This story will show the basic of using Asyncio in a Jupyter Notebook Prerequisites Using Python 3.12. Need to install a few packages via pip...
Tutorial on how to use Asyncio in a Jupyter Notebook This story will show the basic of using Asyncio in a Jupyter Notebook Prerequisites Using Python 3.12. Need to install a few packages via pip...
Tutorial on how to make a mini agent using langgraph Prerequisites I'm working on an Ubuntu 24 with a langgraph 0.2.60 for good measure. This is also not an introduction to LangChain or LangGraph...
Tutorial on how to use Asyncio in Python This story will show the basic of using Asyncio in Python Prerequisites Using Python 3.10. Need to install a few packages via pip along the way, but that...
Story on how to setup Django as cheaply as possible. NB: Still work in progress. This story will show how to create a Django application and deploy it to a hosting provider as cheaply as I could...
Story on how to use Wiremock to run CI on Github with Github Actions This story setup a basic Django project using Docker and Docker Compose and then use Wiremock to run tests against a stubbed...
Story on how to use Docker and Docker Compose and deploy a Django app to Heroku This story setup a basic Django project using Docker and Docker Compose and then deploy said application to Heroku....
Tutorial on how to use logging with Django. Prerequisites I'm working on an Ubuntu 20.04, Django 3.1.1 and django-extensions 3.0.9 for good measure. This will not be a complete from zero to hero...
Story on how to use Sqlite as a database when deploying Django with Zappa Prerequisites I'm working on an Ubuntu 20.04, Django 3.1.1 and zappa 0.5.2 and django-extensions 3.0.9 for good measure....
Tutorial on how to use form validation in Django This story will show how to use form validation in Django. Prerequisites I'm working on an Ubuntu 20.04, Django 3.1.1 and django-extensions 3.0.9...
Tutorial on how to use forms in Django This story will show how to use forms in Django. Prerequisites I'm working on an Ubuntu 20.04, Django 3.1.1 and django-extensions 3.0.9 for good measure....
Setup Django with django-tenancy (semi-isolated) This story will show how to install setup Django to work with multiple clients, like a real SAAS. Prerequisites I'm working on an Ubuntu 20.04,...
Deploy Flask app to Heroku with Docker This story will show how to install deploy a simple Flask app to Heroku via Docker and Gitlab CI. Prerequisites I'm assuming that you are familiar with the...
How to setup Django and Celery with Docker and docker-compose This story sets up Django and adds Celery support to a docker-compose setup. I have updated this on 22 May, 2022 to use the newest...
How to setup Django with Docker and docker-compose In this story I'll show how to setup a simple django application to use docker and docker-compose. Install a base django project First we need to...
How to setup Vagrant, Ansible and Postgresql In this story I’ll be setting up Vagrant with a Postgresql server provisioned by Ansible. The setup will be pretty bare bone, so don’t use it as a...
How does Django's select_related works and when should you use it? What problem does it solve? Django's select_related() solves the problem when you want to access related fields on a queryset....