1
vote
1answer
1k views
How to save inline formset models in Django?
Formsets have a .save() method, and the documentation says to save in vi …
1
vote
How to store a dictionary on a Django Model?
As Ned answered, you won't be able to query "some data" if you use the dictionary approach.
If you still need to store dictionaries then the best approach, by far, is the PickleField class …
5
votes
Is it better to dive into Rails or Django going into the future?
Django may not have a huge user base relative to Rails, but it's certainly big enough to be a very healthy project so that shouldn't really make a difference.
I think your choice should jus …
1
vote
How to save inline formset models in Django?
I discovered my problem, and it's embarrassing.
In the parent model form I had exclude = ('...',) in the Meta class, and one of the excluded fields was critical for the relatio …
0
votes
Python data structure: SQL, XML, or .py file
XML is really oriented to tree structures and is very verbose. You can look at RDF for ways to describe a graph in XML but it still has other disadvantages, e.g. the time to read, parse, and insta …
8
votes
Advice on Python/Django and message queues
In your specific case, where it's just an email queue, I wold take the easy way out and use django-mailer. As a nice side bonue …
7
votes
Splitting a large XML file in Python
There are two common ways to handle XML data.
One is called DOM, which stands for Document Object Model. This style of XML parsing is probably what you have seen when looking at documentat …
6
votes
Generating and submitting a dynamic number of objects in a form with Django
Formsets!
Also, the equivalent for forms generated directly models are …
2
votes
Python Web Framework - Not App Framework or CMS Framework
Right now the hottest "low level" framework is werkzeug and would be a very good place to start. It's minimal and WSGI compliant so you can …
12
votes
django-cart or Satchmo?
Well if you want to use django-cart you should view it as a starting point for developing your own. The last commit (r4) for the project was November 2006.
By comparison, the last commit ( …
10
votes
Reducing Django Memory Usage. Low hanging fruit?
If you are running under mod_wsgi, and presumably spawning since it is WSGI compliant, you can use Dozer to look at your memory usage. …
1
vote
How to deploy Django with Spawning
Eric Florenzo did some basic testing of spawning. Make sure and read all the comments as well as the main post. …
3
votes
Web based wizard with Python
If we break down to the components you'll need, we get:
HTTP server to receive the request from the clients browser.
A URL router to look at the URL sent from client browser …
1
vote
A replacement for python’s httplib?
As others answered httplib2 is a good alternative because it handles headers properly and can cache responses, but I doubt this would help in POST performance.
An alternative that might act …
1
vote
Is there a pure Python Lucene?
+1 to the Xapian and Pyndexter answers.
Ferret is actually written in C with Ruby bindings on top. A pure Ruby search engine would be even slower than a pure Python one. I would love to s …
