How to install django-pygmy
- Download and install ActivePython
- Open Command Prompt
- Type
pypm install django-pygmy
Lastest release
django-pygmy is a little app that colorizes source codez in your Django templates.
It uses pygments for prettify the codez.

Installation
To install django-pygmy, simply run:
pip install django-pygmy
Then add the app to your INSTALLED_APPS:
INSTALLED_APPS = ( ..., 'django_pygmy', )
Usage
Render the awesomeness in your template:
{% load pygmy %} {% pygmy object.code %}
It also takes the same options as HtmlFormatter class:
{% pygmy object.code nowrap='True' linenos='table' %}
Lexers
By default django-pygmy tries to guess which lexer to use based on the provided code.
If you wish you can define any lexer of Pygments lexers like so:
{% pygmy object.code lexer='python' %}
Dependencies
- Python 2.6 - 3.3
- Django 1.3 - 1.5
- pygments >= 1.6