想请问板上的大大,小弟在写python的小工具出现的问题
首先,我有一个.py档,内容主要是针对file system的操作或是
呼叫system command
一开始,我把全部的逻辑写在一个.py档里,遇到要call system
command的时候,就使用subprocess.Popen, 到目前为止,并无
太多问题
后来,因为功能的扩增,我把一些东西拆出去变成class或是
一些common utils, 问题就出现了
EX. main.py内容如下
from common import run_command
if __init__ == '__main__':
run_command('sudo', 'ls', '-al')
common.py
def run_command(cmd):
subprocess.Popen(cmd)
则会出现无法执行状况
后来,在另一个功能上,我把run_command包在class里,就可以跑
Ex : main.py
from feature import a
if __init__ == '__main__':
obj_a = a()
a.run_command('sudo', 'ls', '-al')
feature.py
class a(object):
def __init__(self):
do_something
def run_command(cmd):
subprocess.popen(cmd)
原本把run_command这个很常用的method拉出去之后,就不能跑了
可是,在包成class之后,用起来就跟放在main.py里一样,没什
么问题
想请问大大们,为什么会这样?
谢谢