1
vote
Useful code which uses reduce() in python
I have an old Python implementation of pipegrep that uses reduce and the glob module to build a list of files to process …
0
votes
Useful code which uses reduce() in python
@Eli: thanks! I overlooked sum, probably mostly because I wrote my pipegrep …
8
votes
What’s the best way to distribute python command-line tools?
Try the entry_points.console_scripts parameter in the setup() call. As described in the …
2
votes
Most Pythonic way equivalent for: while ((x = next()) != END)
Maybe it's not terribly idiomatic, but I'd be inclined to go with
x = next()
while x != END:
do_something_with_x
x = next()
... but that's because I find t …
0
votes
Unit tests in Python
Consider py.test. Not exactly analogous to NUnit, but very good, with nice features including test auto-discovery and a "Watch th …
4
votes
Get Last Day of the Month in Python
EDIT: see my other answer. It has a better implementation than this one, which I leave here just in case someone's interested in seeing how one might "roll your own" calculator.
@ …
25
votes
Get Last Day of the Month in Python
I didn't notice this earlier when I was looking at the documentation for the calendar module, but a method called …
6
votes
In Python, how do I get the path and name of the file that is currently executing?
It's not entirely clear what you mean by "the filepath of the file that is currently running within the process".
sys.argv[0] usually contains the location of the script that was invok …
9
votes
How do you create a weak reference to an object in Python?
>>> import weakref
>>> class Object:
... pass
...
>>> o = Object()
>>> r = weakref.ref(o)
>>> # if the reference is still active, r() will b …
3
votes
What is the simplest way to find the difference between 2 times in python?
Also a little silly, but you could try picking an arbitrary day and embedding each time in it, using datetime.datetime.combine, then subtracting:
>>> import da …
6
votes
Recommended Python RSS/Atom feed generator?
I haven't used them myself, but these exist:
PyRSS2Gen
…
7
votes
Does re.compile() or any given Python library call throw an exception?
Well, re.compile certainly may:
>>> import re
>>> re.compile('he(lo')
Traceback (most recent call last):
File "<stdin>", line 1, in <module …
3
votes
Can I document Python code with doxygen (and does it make sense)?
This is documented on the doxygen website, but to summarize here:
You can use doxygen to docume …
10
votes
How to retrieve an element from a set without removing it?
Two gross options, but they don't requiring copying the whole set:
for e in s:
break
# e is now an element from s
Or...
e = iter(s).next() # wa …
8
votes
How do I copy a file to a remote server in python using scp or ssh?
You'd probably use the subprocess module. Something like this:
import subprocess
p = subprocess Popen( …
