4
votes
4answers
2k views
How do you check in Linux with Python if a process is still running?
The only nice way I've found is:
import sys
import os
try:
os.kill(int(sys.argv[1]), 0)
print "Running"
except:
print "Not running"
…
4
votes
4answers
597 views
How do you load an embedded icon from an exe file with PyWin32?
I have an exe file generated with py2exe. In the setup.py I specify an icon to be embedded in the exe:
windows=[{'script': 'my_script.py','icon_resources': [(0, 'my_icon.ico')], ... …
24
votes
How do you express binary literals in python?
For reference—future Python possibilities:
Starting with Python 2.6 you can express binary literals using the prefix 0b or 0B:
…
3
votes
Pure Python library to generate Identicons?
I've found two implementations:
http://coderepos.org/share/browser/lang/python/misc/identicon.py …
1
vote
How do you load an embedded icon from an exe file with PyWin32?
@efotinis: You're right.
Here is a workaround until py2exe gets fixed and you don't want to include the same icon twice:
hicon = win32g …
