Enjoy reading the articles below. I hope you find them useful. And for personal support contact me now.
Django Migrations
Django has a great system for maintaining your database structure, for keeping your RDMS (typically…
Django – a very simple unit test
Test Driven Development (TDD) is a methodology for developing programs where you first write the…
Using PostgreSQL with Django
Here is how go set up Django to work with PostgreSQL Install necessary libraries, etc…
Serving static files in Django
From https://docs.djangoproject.com/en/dev/howto/static-files/: For a production site you probably want to configure the server to serve…
Basic Django templates
Instead of using Python to create all the HTML, Django can load and render templates…
Your second Django project
If you’ve followed the steps in the previous blog posts, you should have your first…
Django – making changes to a model
Unless you get your model/database structure spot on first time, you’ll want to change it….
Django – starting with the admin panel
The admin panel lets you manage your models (i.e. the Django data in the database)….
Django – create your first model
In Django, a “model” is a Python class which turns database entities into objects. You…
Django with MySQL
After PostgreSQL, MySQL is probably the most popular DBMS (database management system) used with Django….
Django – Hello World
Pre-requisites: easy_install, pip, virtualenv – getting ready for Django Installing Django Hello World project in…