#! /usr/bin/python3

import sys, os
sys.path.insert(0, os.path.dirname(__file__))

from annotation import to_python_avec_svg

if len(sys.argv) < 2:
    print("""Usage : svg2annotations chemin_vers_un_fichier.svg""")
else:
    print(to_python_avec_svg(sys.argv[1]))
