2
votes
Poll: Which Python IDE/editor is the best?
Seen no mention of PythonWin yet. I find it really useful for quick Windows scripts.
Great for accessi …
2
votes
Customized command line parsing in Python
A small pythonic variation on Ironforggy's shlex answer:
args = dict( arg.split('=', 1) for arg in shlex.split(cmdln_args) )
oops... - corrected.
thanks, …
2
votes
What is the best SNMP implementation for Python?
Net-Snmp has python bindings. Very simple (command-line like functions) access to SNMP functionality. If you use the Net-Snmp trap daemon, you …
1
vote
Detecting Mouse clicks in windows using python
Windows MFC, including GUI programming, is accessible with python using the Python for Windows extensions by Mark Hammond. …
3
votes
3
votes
Formatting a list of text into columns
Two columns, separated by tabs, joined into lines. Look in itertools for iterator equivalents, to achieve a space-efficient solution.
import string
def fmtpairs(mylist):
…
13
votes
1
vote
Setup Python enviroment on windows
Don't forget to install pywin32 after installing the official (command line) installer. This will define additional start m …
0
votes
How do I watch a file for changes using Python?
As you can see in Tim Golden's article, pointed by …
2
votes
Read colors of image with Python (GAE)
The Images API does not (currently) contain pixel-level functions. To quote the overview document:
…
0
votes
What are good rules of thumb for python imports?
Maybe the (old) article Importing Python Modules by The Effbot will …
2
votes
Python Decimal
You should compare Decimal to Long Integer performance, not floating point. Floating point is mostly hardware these days. Decimal is used for decimal precision …
7
votes
fast filter method in python
Maybe your lists are too large and do not fit in memory, and you experience thrashing.
If the sources are in file …
4
votes
python name a file same as a lib
You should avoid naming your python files with standard library module names.
…
5
votes
Python tutorial for total beginners?
Learning to Program by Alan Gauld, covers the basics. It uses Python mostly, but references other languages.
…
