如何在Python中使用AppleScript?
我制作了一个程序来根据.xlsx文件中的数据批量生成合同。我最初是为PC制作的,现在我正在尝试创建一个mac版本。一切似乎都在顺利运行,但我的程序中有一种方法依赖于win32com.client,所以我需要为此找出其他的东西。我想知道是否有一个类似的mac包,或者一种方法来执行相同的基本任务而不会有太多的麻烦。我愿意学习一点AppleScript; 我不太确定如何在Python中使用AppleScript,或者从哪里开始查看。 这是我正在使用的方法: def PDFconverter(self, filePath, contract): folder = filePath file_type = 'docx' out_folder = folder + "\\" + getIssueCode(self.GUI) if not os.path.exists(out_folder): print('Creating output folder for PDFs...') os.makedirs(out_folder) print(filePath, 'created.') for files in os.listdir("."): if files == contract: out_name = files.replace(file_type, r"pdf") in_file = os.path.abspath(folder + "\\" + files) …