0
votes
Class views in Django
If you want to share common functionality between pages I suggest you look at custom tags. They're quite …
6
votes
What Hosting Service is best for Django applications?
I use Linode who provide you with complete root access to your own machine, for a really quite small fee. Sure it's a bit more work than someone l …
1
vote
Python distutils - does anyone know how to use it?
Most Python programs will use distutils. Django is a one - see …
2
votes
Python descriptor protocol analog in other languages?
I've not heard of a direct equivalent either. You could probably achieve the same effect with macros, especially in a language like Lisp which has extremely powerful macros.
I wouldn't be a …
7
votes
Django Sessions
The filesystem backend is only worth looking at if you're not going to use a database for any other part of your system. If you are using a database then the filesystem backend has nothing to recom …
1
vote
How do you develop against OpenID locally
You shouldn't be having trouble developing against your own machine. What error are you getting?
An OpenID provider will ask you to give your site (in this case …
2
votes
Configuration file with list of key-value pairs in python
I think you want the ConfigParser module in the standard library. It reads and writes INI style fil …
1
vote
What is a simple way to generate keywords from a text?
The simplest way to do what you want is this...
>>> text = "this is some of the sample text"
>>> words = [word for word in set(text.split(" ")) if len(word) > 3]
>>> words
['this', 'some …
4
votes
Is there a standalone Python type conversion library?
You've got two options, either use the struct or …
11
votes
python: how to check if a given index in a dict exists yet
I prefer to do this in one line of code.
my_dict = {}
my_dict[some_value] = my_dict.get(some_value, 0) + 1
Dictionaries have a function, get, which takes two parameters - the …
7
votes
How can I pass a filename as a parameter into my module?
You need to read the file in a the search the contents using the regular expression. The sys module contains a list, argv, which contains all the command line parameters. We pull out the second one …
1
vote
How do I use django mptt?
I don't quite follow your question. A tree stores one type of object, in your case Company. To link Financials to Company just add a foreign key from Financials to Company.
If this doesn't …
1
vote
Should I use GeoDjango for mapping a floor plan?
How often will the floor plan change? From your description a simple image with a imagemap would suffice.
…
0
votes
Dump memcache keys from GAE SDK Console?
Memcache is designed to be quick and there's no convincing use case for this functionality
which would justify the overhead required for a command that is so at odds with the rest of memcached. …
1
vote
Deploying Google Analytics With Django
I mostly agree with Ned, although I have a single setting called IS_LIVE_SITE which toggles analytics code, adverts and a few other things. This way I can keep all the keys in subversion (as it is …
