6
votes
An executable Python app
An alternative tool to py2exe is bbfreeze which generates executables for windows and linux. It's newer than py2exe and handles eg …
0
votes
Using an XML catalog with Python’s lxml?
Can you give an example? According to the lxml validation docs, lxml can handle DTD validation (specified in the XML doc or ex …
8
votes
How do I validate xml against a DTD file in Python
Another good option is lxml's validation which I find quite pleasant to use.
A simple example taken from the lxml site …
2
votes
Python library for rendering HTML and javascript
The big complication here is emulating the full browser environment outside of a browser. You can use stand alone javascript interpreters like Rhino and SpiderMonkey to run javascript code but they …
1
vote
“cannot find -lpq” when trying to install psycopg2
Have you tried the binary build of psycopg2 for windows? If that works with your python then it mitigates the ne …
16
votes
Python: can I have a list with named indices?
This sounds like the PHP array using named indices is very similar to a python dict:
shows = [
{"id": 1, "name": "Sesaeme Street"},
{"id": 2, "name": "Dora The Explorer"},
]
…
3
votes
Is there a widely used STOMP adapter for Twisted?
There is a python library called stomper which I've used in the past with twisted (it comes with twisted example code). Disclaimer, I' …
3
votes
3
votes
How to show the output of ‘l’ in python pdb after every command entered
One way to do this is to alias your favourite commands to run the command and then l.
e.g.
(Pdb) alias s step ;; l
(Pdb) s
> /usr/lib/python2.5/distutils/core.py(14)<m …
