Python News

FreeScrub - A F/OSS, Cross-Platform Metadata Scrubber, Written in Python, Made by Redditors!

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

submitted by miserlou
[link] [4 comments]

Autocomplete for Foreign Keys in the Django Admin Explained

submitted by amjoconn
[link] [comment]

latexyt: a clone of latexit for GTK/linux in python

submitted by wwwtyro
[link] [1 comment]

Python3 coverage library (Alpha)

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.

submitted by Teifion
[link] [4 comments]

Is this Zen enlightenment or is it Django ?

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

submitted by ergo14
[link] [2 comments]

Python’s Innards: for my wife

submitted by DreemTeem
[link] [1 comment]

Python 3.2 alpha 2 release

submitted by Kenos
[link] [comment]

A caching system for Tornado base on MongoDB

submitted by felinx
[link] [comment]

Python Datastructures Backed by Redis

submitted by gst
[link] [comment]