Added inkscape extension files

This commit is contained in:
JSCHILL1 2009-08-04 14:39:04 -05:00
parent 96d9edad78
commit 94a1e28a57
7 changed files with 199 additions and 4 deletions

8
scour.inkscape.py Executable file
View file

@ -0,0 +1,8 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
from scour import scourString
input = file(sys.argv[1], "r")
sys.stdout.write(scourString(input.read()).encode("UTF-8"))
input.close()
sys.stdout.close()