2
votes
1answer
69 views
Why is wxGridSizer much slower to initialize on a wxDialog then on a wxFrame?
It seems that this is specific to windows, here is an example that reproduces the effect:
import wx
def makegrid(window):
grid = wx.GridSizer(24, 10, 1, 1)
window.SetSizer …
0
votes
Automate firefox with python?
See if twill can help you. It can be used as a command line tool or as a python library.
…
2
votes
How would you design a very “Pythonic” UI framework?
This could be an oversimplification, i don't think it would be a good idea to try to make a general purpose ui library this way. On the other hand you could use this approach (metaclasses and frien …
0
votes
What’s a good way to find relative paths in Google App Engine?
The dirname function returns an absolute path, use relative paths. See what is the current directory when your controllers are executed with os.path.abspath(os.path.curdir) …
1
vote
4
votes
Python vs PHP, Python runs slower?
Here is an excellent introductory article to optimization in python.
…
0
votes
How create threads under Python for Delphi
If a process dies all it's threads die with it, so a solution might be a separate process.
See if creating a xmlrpc server might help you, that is a simple solution for interprocess communi …
2
votes
Caching compiled regex objects in Python?
Note that each module initializes itself only once during the life of an app, no matter how many times you import it. So if you compile your expressions at the module's global scope (ie. not in a f …
1
vote
Serving dynamically generated ZIP archives in Django
Wouldn't it be simpler to put a download link beside each book instead of a check box so that the visitor can download the books on by one? I fail to see how this would inconvenience the visitor... …
2
votes
Python Authentication API
I think you should make your own authentication method as you can make it fit your application best but use a library for encryption, such as pycryp …
2
votes
‘id’ is a bad variable name in Python
It's bad to name any variable after a built in function. One of the reasons is because it can be confusing to a reader that doesn't know the name is overridden.
…
0
votes
What’s the easiest non-memory intensive way to output XML from Python?
Some years ago I used MarkupWriter from 4suite
General-purpose utility class for generating XML …
0
votes
1
vote
6
votes
What is a good PDF report generator tool for python?
I'm a big fan of pod. Design your report templates in open office writer (or ms word + sun's odf plugin) and then combine it with your …
