import os import subprocess if not os.path.exists("tgs"): os.makedirs("tgs") if not os.path.exists("svg"): os.makedirs("svg") os.chdir("svg") for filename in os.listdir("."): if filename.endswith(".svg"): tgs_filename = f"../tgs/{filename[:-4]}.tgs" subprocess.run(["cmd.exe", "/c", "lottie_convert.py", filename, tgs_filename])