1
vote
Python code generator for Visual Studio?
I don't understand what you are trying to do here. Are you trying to execute a Python script that generates a C# file and then compile that with the project? Or are you trying to compile a Python s …
1
vote
Python code generator for Visual Studio?
OK, I see. Well, as far as I know there isn't any code generator for Python. There is a good introduction on how to roll your own …
1
vote
Class views in Django
You can always create a class, override the call function and then point the URL file to an instance of the class. You can take a look at the …
-2
votes
How do I make Windows aware of a service I have written in Python?
A well written service (and most services written as described in the links posted by Espo) are auto-registering, that meaning that when passed "install" on the command line, they should register t …
1
vote
Django ImageField core=False in newforms admin
This is simple. I started getting this problems a few revisions ago. Basically, just remove the "core=True" parameter in the ImageField in the models, and then follow the instructions …
2
votes
What’s the best way to implement an ‘enum’ in Python?
Hi!
Hmmm... I suppose the closest thing to an enum would be a dictionary, defined either like this:
months = {
'January': 1,
'February': 2,
...
}
…
3
votes
Finding a file in a Python module distribution
That's probably the way to do it, without resorting to something more advanced like using setuptools to install the files where they belong.
Notice there's a problem with that approach, bec …
4
votes
Request UAC elevation from within a Python script?
It seems there's no way to elevate the application privileges for a while for you to perform a particular task. Windows needs to know at the start of the program whether the application requires ce …
2
votes
Python desktop widgets
You should take a look at what the guys at Digsby are doing. Basically, they've written a port of …
9
votes
How do I calculate number of days betwen two dates using Python?
Using the power of datetime:
from datetime import datetime
date_format = "%m/%d/%Y"
a = datetime.strptime('8/18/2008', date_format)
b = datetime.strptime('9/26/2008', date_format)
d …
0
votes
How to iterate over a timespan after days, hours, weeks and months in Python?
This library provides a handy calendar tool: mxDateTime, that should be enough :)
…
1
vote
django development IDE
I really like E Texteditor as it's pretty much a "port" of Textmate to Windows. Obviously Django being based on Python the support for auto …
0
votes
Converting XML to JSON using Python?
Well, probably the simplest way is just parse the XML into dictionaries and then serialize that with simplejson.
…
