File :-(, x, )
Anonymous
>> Anonymous
     File :-(, x)
Full-sized GIF and MNG

http://rapidshare.de/files/36298320/dog.zip

#Python.org
# Renames all image files in a directory into a numbered series. Good for series of images from imageboards.

import os

# Excluding the extension, how long would you like the filename?
namelen = 7
# What is the extension for these files?
ext = 'jpg'
cnt = 0
filterList = []
>> Anonymous
OH SHI-