Description:
The Python computer language.
|
|
|
Python & OpenOffice Spreadsheets
|
| |
Is there a *simple* way to read OpenOffice spreadsheets? Bonus: write them, too? I mean something like: doc.cells[0][0] = "foo" doc.save("xyz.ods") ...directly. -- Gerhard
|
|
python and Postgresq
|
| |
Hi, Does anyone have a link to, or can provide an example script for using python-pgsql ([link]) or if someone can recommend an alternative, that would be fantastic. Thanks! Andy Dixon
|
|
lxml 2.2.4 for Python 2.6
|
| |
Is there any reason why lxml-2.2.4-py2.6-win32.egg (md5) or lxml-2.2.4.win32-py2.6.exe is not available? Best regards, /Srijit
|
|
Trying to understand += better
|
| |
If I've got an object foo, and I execute: foo.bar += baz exactly what happens if foo does not have a 'bar' attribute? It's pretty clear that foo.__getattr__('bar') gets called first, but it's a little murky after that. Assume for the moment that foo.__getattr__ ('bar') returns an object x. I think the complete sequence of calls... more »
|
|
Implementation of Book Organization tool (Python2.[x])
|
| |
Hi together, I'm a python-proficient newbie and want to tackle a program with Python 2.x, which basically organizes all my digital books (*.pdf, *.chm, etc..) and to give them specific "labels", such as: "Author" -> string "Read" -> boolean "Last Opened:" -> string and so on.. Now my question is: Is it a better method to use a /database/, a /static File/, with some... more »
|
|
problem manipulating a list belonging to a class
|
| |
Dear all, I have a problem with the following code (ubuntu 8.04, Python 2.5.2): class Toto(object): def __init__(self, number, mylist=[]): self.number=number self.mylist=mylist pass pass listA=Toto(number=1) listB=Toto(number=2) listA.mylist.append(5) print "1) ", listA.mylist print "2) ", listB.mylist... more »
|
|
creating pipelines in python
|
| |
hi all, i am looking for a python package to make it easier to create a "pipeline" of scripts (all in python). what i do right now is have a set of scripts that produce certain files as output, and i simply have a "master" script that checks at each stage whether the output of the previous script exists, using functions from the os module. this has... more »
|
|
xmlrpc idea for getting around the GIL
|
| |
Has anyone every tried wrapping the CPython lib into a daemon with an RPC mechanism in order to move the GIL out of the process? I have multiple audio threads, each of which use the python interpreter but don't have to interact with each other and can might as well use a separate interpreter handled by a daemon with libpython linked in.... more »
|
|
|