How to install pygmy
- Download and install ActivePython
- Open Command Prompt
- Type
pypm install pygmy
Lastest release


pygmy is a little app that colorizes source codez in your Python templates. Supported template engines: Django and Jinja2.
Requirements
- Python 2.6+ (or Python 3.2+)
- pygments 1.6+
Requirements for Django
- Django 1.3+
Requirements for Jinja2
- Jinja2 2.4+
Installation
Install using pip:
pip install pygmy
Installation for Django
Add pygmy to your INSTALLED_APPS:
INSTALLED_APPS = ( ..., 'pygmy', )
Usage for Django
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 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' %}