如何从Scrapy脚本中执行cmd行?我在Microsoft Windows环境中使用Scrapy。通常,在原生Python中,我会这样做:
import os os.system('cmd /c "color a"')
如何在Scrapy脚本中执行类似的操作?
zynd9foi1#
我希望这能解决你的问题。
import subprocess # Command line you want to execute command = 'your_command_here'. # Execute the command subprocess.call(command, shell=True)
1条答案
按热度按时间zynd9foi1#
我希望这能解决你的问题。