Search Results

11
votes
5answers
756 views

Serving dynamically generated ZIP archives in Django

How to serve users a dynamically generated ZIP archive in Django? I'm making a site, where users can choose any combination of available books and download them as ZIP archive. I'm worried …
0
votes

How to import module from file name

You can use the load_source(module_name, path_to_file) method from imp module. …
6
votes

Django -vs- Grails -vs- ???

However it's written in Python which means there's little real support in the way of deployment/packaging, debugging, profilers and other tools that make building and maintai …
5
votes

How to create a triple-join table with Django

zacherates writes: I'd model Role as an association class between Users and Roles (...) I'd also reccomed this solution, but you can al …
16
votes

Change the width of form elements created with ModelForm in Django

The easiest way for your use case is to use CSS. It's a language meant for defining presentation. Look at the code generted by form, take note of ids for fields that interest you, …
6
votes

Union and Intersect in Django

Please don't reinvent the wheel and use django-tagging application which was made exactly for your use case. It can do all quer …
4
votes

Recommended Python publish/subscribe/dispatch module ?

PyDispatcher is used heavily in Django and it's working perfectly …
10
votes

Book and tutorial recommedations for Django 1.0

If you prefer screencasts to written documentation, there is a new serie of tutorials "Django From The Ground Up" on This Week in D …
3
votes

Python module for wiki markup

You should look at a good parser for Creole syntax: creole …