Search Results

18
votes

What’s wrong with “magic”?

The primary problem occurs when you don't understand the magic. This can lead to anything from applications that are badly neutered all the way to sporadic, fatal crashes. …
7
votes

Django: using <select multiple> and POST

request.POST.getlist('services') …
0
votes

Incremement Page Hit Count in Django

The model conventions won't be atomic; write it by hand: BEGIN SELECT * FROM table WHERE id=3 FOR UPDATE UPDATE table SET hit_count=hit_count+1 WHERE id=3 COMMIT …
1
vote

Auto GET to argument of view

Instead of fighting Django, why not just request some_view/10/20 and then set up urls.py to extract the arguments? …
3
votes

How to get field names when running plain sql query in django

According to PEP 249, you can try using cursor.description, but this is not entirely reliable. …
1
vote

What’s a good way to mix RSS feeds using Python?

 Planet is a feed aggregator written in Python. Its development is basically dead, but the code lives on in several forks, including Plane …
3
votes

Writing a __init__ function to be used in django model

Django expects the signature of a model's constructor to be (self, *args, **kwargs), or some reasonable facsimile. Your changing the signature to something completely incompatible has …
0
votes

How to dynamically compose an OR query filter in Django?

values = [1, 2, 3] query = reduce(operator.or_, (Q(pk=x) for x in values)) …