Creating a blog with Django

March 25, 2015 | Posted in blogging | Ajoy Oommen

I have been blogging with Wordpress.com for a couple of years now. Recently I thought about creating and maintaining my own blog software. Python was my language of choice, so I considered CherryPy, Django and Flask but settled for Django because of its wonderful ORM and admin interface.

In this post I will discuss some features of this blog and possible enhancements. This code is available at my GitHub repository django_site.

Posts are organized under categories. Categories can be nested up to any level, but for now, I limit them to single level. Root categories are used to sort posts into logical topics. Posts are created under leaf categories.

A post can have multiple tags. The section on Related Posts uses these tags to determine possible relation between posts

Posts are written in Markdown. I have used Python-Markdown to render the markdown. I am also planning to add Pygments for syntax coloring.

Markdown Django Wordpress

Related Posts

27 Feb 2017 » Provisioning an ubuntu server for Django, Postgres, NGINX

15 Jul 2016 » Using Signals in Django

21 Apr 2015 » Uploading a file to Django

14 Sep 2014 » Migrating databases with South