如何执行启动另一个 python 脚本的 python 宏?
Posted
技术标签:
【中文标题】如何执行启动另一个 python 脚本的 python 宏?【英文标题】:How to execute a python macro that launches another python script? 【发布时间】:2019-01-02 10:26:25 【问题描述】:我想在 libreoffice 上创建一个 python 宏,它将触发另一个 python 脚本。不幸的是,它不起作用,我不知道为什么。
当我从终端启动 python 时,它可以正常工作,但不能从宏启动。
我的 macro.py 文件:
import os
def launch():
os.system("python /home/ivq/Documents/generation.py")
launch()
预期结果:启动 generation.py 实际结果:什么都没发生
【问题讨论】:
你怎么知道它没有启动? 【参考方案1】:import subprocess
subprocess.call(["python", "/home/ivq/Documents/generation.py"])
应该帮忙吗?
【讨论】:
以上是关于如何执行启动另一个 python 脚本的 python 宏?的主要内容,如果未能解决你的问题,请参考以下文章
Python包装脚本来测量另一个python文件的执行时间[重复]