mirror of
https://github.com/brmlab/lasic.git
synced 2025-06-08 17:23:59 +02:00
14 lines
204 B
Python
Executable file
14 lines
204 B
Python
Executable file
#!/usr/bin/env python
|
|
|
|
import sys
|
|
from SvgProcessor import SvgProcessor
|
|
|
|
|
|
if len(sys.argv) < 2:
|
|
print 'Usage: showsvg filename.svg'
|
|
sys.exit(1)
|
|
|
|
sp = SvgProcessor()
|
|
|
|
sp.parseFile(sys.argv[1], 1)
|
|
|