Python远程追加文件

时间:2015-01-12 00:59:48

标签: python post urllib2 urllib

在python中将数据附加到现有文件(本地)似乎很容易,虽然不是那么容易远程(至少我发现)。是否有一些直接的方法来实现这个目标?

我尝试使用:

import subprocess

cmd = ['ssh', 'user@example.com',
       'cat - > /path/to/file/append.txt']

p = subprocess.Popen(cmd, stdin=subprocess.PIPE)

inmem_data = 'foobar\n'

for chunk_ix in range(0, len(inmem_data), 1024):
    chunk = inmem_data[chunk_ix:chunk_ix + 1024]
    p.stdin.write(chunk)

但也许不是这样做的方式;所以我试着发布一个查询:

import urllib
import urllib2

query_args = { 'q':'query string', 'foo':'bar' }

request = urllib2.Request('http://example.com:8080/')
print 'Request method before data:', request.get_method()

request.add_data(urllib.urlencode(query_args))
print 'Request method after data :', request.get_method()
request.add_header('User-agent', 'PyMOTW (http://example.com/)')

print
print 'OUTGOING DATA:'
print request.get_data()

print
print 'SERVER RESPONSE:'
print urllib2.urlopen(request).read()

但我得到connection refused,所以我显然需要某种类型的表单处理程序,遗憾的是我不知道。是否有推荐的方法来实现这一目标?感谢。

1 个答案:

答案 0 :(得分:3)

如果我理解正确,您正尝试将远程文件附加到本地文件...

我建议使用面料...... http://www.fabfile.org/

我已尝试使用文本文件,效果很好。

请记住在运行脚本之前安装光纤网:

pip install fabric

将远程文件附加到本地文件(我认为这是不言自明的):

from fabric.api import (cd, env)
from fabric.operations import get

env.host_string = "127.0.0.1:2222"
env.user = "jfroco"
env.password = "********"

remote_path = "/home/jfroco/development/fabric1"
remote_file = "test.txt"
local_file = "local.txt"

lf = open(local_file, "a")

with cd(remote_path):
    get(remote_file, lf)

lf.close()

以任何python文件运行它(没有必要使用“fab”应用程序)

希望这有帮助

编辑:在远程文件末尾写入变量的新脚本:

同样,使用Fabric

非常简单
from fabric.api import (cd, env, run)
from time import time

env.host_string = "127.0.0.1:2222"
env.user = "jfroco"
env.password = "*********"

remote_path = "/home/jfroco/development/fabric1"
remote_file = "test.txt"

variable = "My time is %s" % time()

with cd(remote_path):
    run("echo '%s' >> %s" % (variable, remote_file))

在示例中,我使用time.time()但可以是任何内容。