Cross Reference: scour.inkscape.py
xref
: /
inkscape
/
share
/
extensions
/
scour.inkscape.py
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
scour.inkscape.py revision 29ed3ddde7ac0c63786946b42e478f24554085d5
#!/
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
()