我需要一种从外部编辑器获取数据的方法。
def _get_content():
from subprocess import call
file = open(file, "w").write(some_name)
call(editor + " " + file, shell=True)
file.close()
file = open(file)
x = file.readlines()
[snip]
我个人认为应该有更优雅的方式。你看,我需要与外部编辑器进行交互并获取数据。
你知道更好的方法/有更好的想法吗?
编辑:
Marcelo让我想到了使用tempfile
来做这件事。
我是这样做的:
def _tempfile_write(input):
from tempfile import NamedTemporaryFile
x = NamedTemporaryFile()
x.file.write(input)
x.close()
y = open(x)
[snip]
这样做,但也不太令人满意。 听说有关产卵的事情?
答案 0 :(得分:3)
这是所有程序的方式,AFAIK。当然,我使用的所有版本控制系统都会创建一个临时文件,将其传递给编辑器并在编辑器退出时检索结果,就像您一样。
答案 1 :(得分:2)
我建议使用列表,而不是字符串:
def _get_content(editor, initial=""):
from subprocess import call
from tempfile import NamedTemporaryFile
# Create the initial temporary file.
with NamedTemporaryFile(delete=False) as tf:
tfName = tf.name
tf.write(initial)
# Fire up the editor.
if call([editor, tfName]) != 0:
return None # Editor died or was killed.
# Get the modified content.
with open(tfName).readlines() as result:
os.remove(tfName)
return result
答案 2 :(得分:1)
编辑器只允许您以交互方式编辑文件。你也可以用Python编辑文件。没有必要打电话给外部编辑。
for line in open("file"):
print "editing line ", line
# eg replace strings
line = line.replace("somestring","somenewstring")
print line