212

我正在开发一个简单的工具,该工具将文件传输到硬编码位置,密码也是硬编码的。我是 python 新手,但感谢 ftplib,这很容易:

import ftplib

info= ('someuser', 'password')    #hard-coded

def putfile(file, site, dir, user=(), verbose=True):
    """
    upload a file by ftp to a site/directory
    login hard-coded, binary transfer
    """
    if verbose: print 'Uploading', file
    local = open(file, 'rb')    
    remote = ftplib.FTP(site)   
    remote.login(*user)         
    remote.cwd(dir)
    remote.storbinary('STOR ' + file, local, 1024)
    remote.quit()
    local.close()
    if verbose: print 'Upload done.'

if __name__ == '__main__':
    site = 'somewhere.com'            #hard-coded
    dir = './uploads/'                #hard-coded
    import sys, getpass
    putfile(sys.argv[1], site, dir, user=info)

问题是我找不到任何支持 sFTP 的库。安全地做这样的事情的正常方法是什么?

编辑:多亏了这里的答案,我已经让它与 Paramiko 一起工作,这就是语法。

import paramiko

host = "THEHOST.com"                    #hard-coded
port = 22
transport = paramiko.Transport((host, port))

password = "THEPASSWORD"                #hard-coded
username = "THEUSERNAME"                #hard-coded
transport.connect(username = username, password = password)

sftp = paramiko.SFTPClient.from_transport(transport)

import sys
path = './THETARGETDIRECTORY/' + sys.argv[1]    #hard-coded
localpath = sys.argv[1]
sftp.put(localpath, path)

sftp.close()
transport.close()
print 'Upload done.'

再次感谢!

4

11 回答 11

122

Paramiko支持 SFTP。我用过它,而且我用过 Twisted。两者都有自己的位置,但您可能会发现从 Paramiko 开始更容易。

于 2009-01-11T05:04:22.937 回答
96

您应该查看 pysftp https://pypi.python.org/pypi/pysftp 它依赖于 paramiko,但将最常见的用例包装到几行代码中。

import pysftp
import sys

path = './THETARGETDIRECTORY/' + sys.argv[1]    #hard-coded
localpath = sys.argv[1]

host = "THEHOST.com"                    #hard-coded
password = "THEPASSWORD"                #hard-coded
username = "THEUSERNAME"                #hard-coded

with pysftp.Connection(host, username=username, password=password) as sftp:
    sftp.put(localpath, path)

print 'Upload done.'
于 2014-05-27T23:05:35.770 回答
16

这是使用 pysftp 和私钥的示例。

import pysftp

def upload_file(file_path):

    private_key = "~/.ssh/your-key.pem"  # can use password keyword in Connection instead
    srv = pysftp.Connection(host="your-host", username="user-name", private_key=private_key)
    srv.chdir('/var/web/public_files/media/uploads')  # change directory on remote server
    srv.put(file_path)  # To download a file, replace put with get
    srv.close()  # Close connection

pysftp 是一个易于使用的 sftp 模块,它利用了 paramiko 和 pycrypto。它提供了一个简单的 sftp 接口。你可以用 pysftp 做的其他事情非常有用:

data = srv.listdir()  # Get the directory and file listing in a list
srv.get(file_path)  # Download a file from remote server
srv.execute('pwd') # Execute a command on the server

更多命令和关于 PySFTP的信息

于 2014-06-06T14:56:58.837 回答
15

如果你想要简单,你可能还想看看Fabric。它是一个类似于 Ruby 的 Capistrano 的自动化部署工具,但更简单,当然也适用于 Python。它建立在 Paramiko 之上。

您可能不想进行“自动部署”,但 Fabric 仍然非常适合您的用例。向您展示 Fabric 是多么简单:您的脚本的 fab 文件和命令看起来像这样(未经测试,但 99% 肯定它会工作):

fab_putfile.py:

from fabric.api import *

env.hosts = ['THEHOST.com']
env.user = 'THEUSER'
env.password = 'THEPASSWORD'

def put_file(file):
    put(file, './THETARGETDIRECTORY/') # it's copied into the target directory

然后使用 fab 命令运行该文件:

fab -f fab_putfile.py put_file:file=./path/to/my/file

你完成了!:)

于 2009-12-08T13:29:52.827 回答
5

使用 RSA 密钥然后参考这里

片段:

import pysftp
import paramiko
from base64 import decodebytes

keydata = b"""AAAAB3NzaC1yc2EAAAADAQABAAABAQDl""" 
key = paramiko.RSAKey(data=decodebytes(keydata)) 
cnopts = pysftp.CnOpts()
cnopts.hostkeys.add(host, 'ssh-rsa', key)


with pysftp.Connection(host=host, username=username, password=password, cnopts=cnopts) as sftp:   
  with sftp.cd(directory):
    sftp.put(file_to_sent_to_ftp)
于 2017-10-27T08:29:15.110 回答
4

fsspec是一个很好的选择,它提供了一个类似sftp实现的文件系统。

from fsspec.implementations.sftp import SFTPFileSystem
fs = SFTPFileSystem(host=host, username=username, password=password)

# list a directory
fs.ls("/")

# open a file
with fs.open(file_name) as file:
    content = file.read()

另外值得注意的是 fsspec 在实现中使用了 paramiko 。

于 2020-08-11T20:20:54.480 回答
3

Twisted可以帮助你做你正在做的事情,查看他们的文档,有很多例子。它也是一个成熟的产品,背后有一个庞大的开发者/用户社区。

于 2009-01-11T04:51:32.993 回答
1

有一堆提到 pysftp 的答案,所以如果你想要一个围绕 pysftp 的上下文管理器包装器,这里有一个解决方案,它的代码更少,使用时看起来像下面这样

path = "sftp://user:p@ssw0rd@test.com/path/to/file.txt"

# Read a file
with open_sftp(path) as f:
    s = f.read() 
print s

# Write to a file
with open_sftp(path, mode='w') as f:
    f.write("Some content.") 

(更完整的)示例: http: //www.prschmid.com/2016/09/simple-opensftp-context-manager-for.html

如果您第一次无法连接,此上下文管理器恰好具有自动重试逻辑(令人惊讶的是,这种情况发生的频率比您在生产环境中预期的要频繁......)

上下文管理器要点open_sftphttps ://gist.github.com/prschmid/80a19c22012e42d4d6e791c1e4eb8515

于 2016-11-28T22:41:46.323 回答
1

帕拉米科太慢了。使用 subprocess 和 shell,这里是一个例子:

remote_file_name = "filename"
remotedir = "/remote/dir"
localpath = "/local/file/dir"
    ftp_cmd_p = """
    #!/bin/sh
    lftp -u username,password sftp://ip:port <<EOF
    cd {remotedir}
    lcd {localpath}
    get {filename}
    EOF
    """
subprocess.call(ftp_cmd_p.format(remotedir=remotedir,
                                 localpath=localpath,
                                 filename=remote_file_name 
                                 ), 
                shell=True, stdout=sys.stdout, stderr=sys.stderr)
于 2017-09-13T14:15:44.593 回答
1

PyFilesystem及其sshfs是一种选择。它在底层使用 Paramiko,并在顶部提供了更好的独立于平台的界面。

import fs

sf = fs.open_fs("sftp://[user[:password]@]host[:port]/[directory]")
sf.makedir('my_dir')

或者

from fs.sshfs import SSHFS
sf = SSHFS(...
于 2020-04-15T17:52:03.203 回答
-2

您可以使用pexpect 模块

这是一个很好的介绍帖子

child = pexpect.spawn ('/usr/bin/sftp ' + user@ftp.site.com )
child.expect ('.* password:')
child.sendline (your_password)
child.expect ('sftp> ')
child.sendline ('dir')
child.expect ('sftp> ')
file_list = child.before
child.sendline ('bye')

我没有对此进行测试,但它应该可以工作

于 2017-02-20T05:33:36.417 回答