6
votes
Redirect command to input of another in Python
It can be done. As of Python 2.5, however, this mechanism is Linux-specific and not portable:
import subprocess
import sys
file = sys.argv[1]
p1 = subprocess.Popen(['hg', 'cat', fi …
3
votes
How should I best emulate and/or avoid enum’s in Python?
What I see more often is this, in top-level module context:
FOO_BAR = 'FOO_BAR'
FOO_BAZ = 'FOO_BAZ'
FOO_QUX = 'FOO_QUX'
...and later...
if somethin …
0
votes
How do I find the location of my Python site-packages directory?
As others have noted, distutils.sysconfig has the relevant settings:
import distutils.sysconfig
print distutils.sysconfig.get_python_lib()
...though t …
1
vote
Are there any other good alternatives to zc.buildout and/or virtualenv for installing non-python dependencies?
Setuptools may be capable of more of what you're looking for than you realize -- if you need a custom version of lxml to work correctly on MacOS X, for instance, you can put a URL to an appropriate …
4
votes
What is the best project structure for a Python application?
Non-python data is best bundled inside your Python modules using the package_data support in setuptools. …
1
vote
Pylons with Elixir
Personally, I'd go with beachcoder's recipe as updated here. That said, with the possible exception of Tesla (which I'm not familiar wit …
15
votes
Ensuring a single instance of an application in Linux
The Right Thing is advisory locking using flock(LOCK_EX); in Python, this is found in the fcnl module …
2
votes
cherrypy not closing the sockets
I imagine you're storing (in-memory) some piece of data which has a reference to the socket; if you store the request objects anywhere, for instance, that would likely do it.
The last-ditch …
2
votes
Python Disk-Based Dictionary
Last time I was facing a problem like this, I rewrote to use SQLite rather than a dict, and had a massive performance increase. That performance increase was at least partially on account of the da …
0
votes
Any python libs for parsing apache config files?
Red Hat's Emerging Technologies group has Augeas (written in C, but with Python bindings available), a generic system configuration tool with "lenses …
2
votes
Jython 2.2.1, howto move a file? shutils.move is non-existant!
os.rename() to move, and os.unlink() to delete -- just like Python pre-shutil.
…
1
vote
Jython 2.2.1, howto move a file? shutils.move is non-existant!
If you need support for moving across filesystems, consider just copying CPython's shutil.py into your project. …
15
votes
Python program start
A better pattern is this:
def main():
...
if __name__ == '__main__':
main()
This allows your code to be invoked by someone who imported it, while also makin …
10
votes
Python - String Literals
You're being mislead by output -- the second approach you're taking actually does what you want, you just aren't believing it. :)
>>> foo = 'baz "\\"'
>>> foo
'baz …
6
votes
Python, optparse and file mask
Python has nothing to do with this -- it's the shell.
Call
$ python convert.py -i 'video_*'
and it will pass in that wildcard.
The other six values …
