Python News
FreeScrub - A F/OSS, Cross-Platform Metadata Scrubber, Written in Python, Made by Redditors!
September 7th, 2010 1:56a.m. | Reddit (RSS)
I was trying to find a metadata scrubber and couldn't find one, so I asked /r/linux, and a bunch of people stepped up and together we made one! It's written in Python and uses PyGTK, but it works for Linux and Windows, and I'm working on an OSX package right now.
If you're on windows and want to run the software, you can use this installer: http://github.com/downloads/Miserlou/FreeScrub/FreeScrub-0.1.Setup.exe
If you'd like to play with the code, you can fork the project from here: http://github.com/mikm/FreeScrub
Plenty of work left to be done, but thought you might be interested! R
[link] [4 comments]
Autocomplete for Foreign Keys in the Django Admin Explained
latexyt: a clone of latexit for GTK/linux in python
September 6th, 2010 9:40p.m. | Reddit (RSS)
submitted by wwwtyro
[link] [1 comment]
Python3 coverage library (Alpha)
September 6th, 2010 7:54p.m. | Reddit (RSS)
I've been wanting something to show me what parts of my application are yet to be covered, since nothing I could find worked for Python3 I wrote my own.
Usage is pretty simple, simply take this:
if __name__ == '__main__': unittest.main() And turn it into this
if __name__ == '__main__': test_program = unittest.main(exit=False) module_skip = []# Skip modules dirs_skip = []# Skip directories covers.get_coverage(test_program, 'the_path_of_this_app', verbose=True, module_skip, dirs_skip) Along with taking this:
class My_test_class(unittest.TestCase): And turning it into this:
class My_test_class(unittest.TestCase): test_targets = [my_function, my_other_function]# Mark the functions we test As it's a first go I'm sure I've made a bajillion mistakes (going by past experience here) but since it's working pretty nicely for me I figured that others may find a use for it.
[link] [4 comments]
Is this Zen enlightenment or is it Django ?
September 6th, 2010 3:41p.m. | Reddit (RSS)
submitted by Rakam
[link] [1 comment]
html2textile 0.1 - A WORKING converter for html -> textile, most of syntax and features is supported. Had to write one on my own because everything else I tried wasn't even close to support all major elements and markup
September 6th, 2010 1:01p.m. | Reddit (RSS)
submitted by ergo14
[link] [2 comments]
Python’s Innards: for my wife
September 6th, 2010 12:33p.m. | Reddit (RSS)
submitted by DreemTeem
[link] [1 comment]
