2
votes
Sending mail via sendmail from python
Header injection isn't a factor in how you send the mail, it's a factor in how you construct the mail. Check the email package, construct the mail with that, serialise it, and send it …
1
vote
Is there a common way to check in Python if an object is any function type?
if hasattr(obj, '__call__'): pass
This also fits in better with Python's "duck typing" philosophy, because you don't really care what it is, so long as you can ca …
20
votes
Why isn’t the ‘len’ function inherited by dictionaries and lists in Python
Guido's explanation is here:
First of all, I chose len(x) over x.len() for …
7
votes
Running multiple sites from a single Python web framework
Django has this built in. See the sites framework.
As a general technique, include a …
1
vote
How to best implement simple crash / error reporting?
I can't think of a way to do this without including a username and password for the smtp server in the application...
You only need a username and password for …
23
votes
How do you configure Django for simple development and deployment?
I have multiple settings files.
settings_local.py - host-specific configuration, such as database name, file paths, etc.
settings_development.py - c …
1
vote
Google App Engine: how can I programmatically access the properties of my Model class?
getattr(p, s)
setattr(p, s, new_value)
…
1
vote
Google App Engine: how can I programmatically access the properties of my Model class?
Try:
p.model_properties()[s].get_value_for_datastore(p)
See …
1
vote
How do I read selected files from a remote Zip archive over HTTP using Python?
Bear in mind that merely decompressing a ZIP file may result in a security vulnerability.
…
13
votes
Image Processing, In Python?
The best-known library is PIL. However if you are simply doing basic manipulation, you are probably better off with the Python bin …
7
votes
What is your single favorite Python templating engine?
Genshi. XML-based, which means your document has structure that can be manipulated rather than being an opaque string to be outputted. Thi …
0
votes
What would be the simplest way to daemonize a python script in Linux ?
Use grizzled.os.daemonize:
$ easy_install grizzled
>>> from grizzled.os import daemonize
> …
5
votes
Python PostgreSQL modules. Which is best?
psycopg2 seems to be the most popular. I've never had any trouble with it. There's actually a pure Python interface for PostgreSQL too, called …
0
votes
Python Vs. Ruby for Metaprogramming
There isn't really a lot to separate Python and Ruby. I'd say the Python community is larger and more mature than the Ruby community, and that's really important for me. Ruby is a more flexible l …
