2
votes
1answer
100 views
Is there a way to resize images in Django via imagename.230x150.jpg?
There's a nice plugin for Frog CMS that lets you just type in yourpicture.120x120.jpg or whatever, and it will automatically use the image in that dimension. If it doesn't exist, it creates it and …
1
vote
1answer
97 views
How to get publisher.authors when you have book.publisher and book.author?
Fresh from the Djangobook tutorial using the Books app example, you have Book related to Author through a many-to-many relationship and Book related to Publisher. You can get a set of books associa …
0
votes
1answer
130 views
Is there anything in the Django / Python world equivalent to SimplePie Plugin for Wordpress?
I know that SimplePie itself is derived from UFP, but the features I'm wondering about are the post-processing features that are available in SimplePie for WordPress plugin:
…
0
votes
2answers
365 views
How to consume XML from RESTful web services using Django / Python?
Should I use PyXML or what's in the standard library?
…
0
votes
1answer
121 views
How do you remove html tags using Universal Feed Parser?
The documentation lists the tags that are allowed/removed by default:
http://www.feedparser.org/docs/html-sani …
0
votes
4answers
127 views
What’s a good way to mix RSS feeds using Python?
SimplePie lets you merge feeds together:
http://simplepie.org/wiki/tutorial/sort_multiple_fe …
1
vote
4answers
644 views
How to unescape apostrophes and such in Python?
I have a string with symbols like this:
'
That's an apostrophe apparently.
I tried saxutils.unescape() without any luck and tried urllib.unquote() …
4
votes
2answers
267 views
Can you pass a dictionary when replacing strings in Python?
In PHP, you have preg_replace($patterns, $replacements, $string), where you can make all your substitutions at once by passing in an array of patterns and replacements.
What is the equivale …
1
vote
3answers
131 views
Installed apps in Django - what about versions?
After looking at the reusable apps chapter of Practical Django Projects and listening to the DjangoCon (Pycon?) lecture, there seems to be an emphasis on making your apps pluggable by installing th …
1
vote
9answers
325 views
Is it more efficient to parse external XML or to hit the database?
I was wondering when dealing with a web service API that returns XML, whether it's better (faster) to just call the external service each time and parse the XML (using ElementTree) for display on y …
0
votes
1answer
61 views
Would extracting page metadata be a good use of multiple inheritance?
I was wondering if I have a couple of models which both include fields like "meta_keywords" or "slug" which have to do with the web page the model instance will be displayed on, whether it would be …
1
vote
2answers
444 views
How to specify time zone (UTC) when converting to Unix time? (Python)
I have a utc timestamp in the IS8601 format and am trying to convert it to unix time. This is my console session:
In [9]: mydate
Out[9]: '2009-07-17T01:21:00.000Z'
In [10]: parsedda …
2
votes
4answers
226 views
Python Unix time doesn’t work in Javascript
In Python, using calendar.timegm(), I get a 10 digit result for a unix timestamp. When I put this into Javscript's setTime() function, it comes up with a date in 1970. It evidently needs a unix tim …
0
votes
8answers
288 views
How do you do something after you render the view? (Django)
I want to do something after I have rendered the view using
return render_to_response()
Are signals the only way to do this? Do I need to write a custom signal or …
3
votes
10answers
318 views
Any drawbacks to storing an integer as a string in a database?
I have id values for products that I need store. Right now they are all integers, but I'm not sure if the data provider in the future will introduce letters or symbols into that mix, so I'm debatin …
