forked from ParallelSSH/ssh2-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsftp_write.py
executable file
·60 lines (48 loc) · 1.9 KB
/
sftp_write.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/usr/bin/python
"""Example script for SFTP write"""
import argparse
import socket
import os
from datetime import datetime
from ssh2.session import Session
from ssh2.sftp import LIBSSH2_FXF_CREAT, LIBSSH2_FXF_WRITE, \
LIBSSH2_SFTP_S_IRUSR, LIBSSH2_SFTP_S_IRGRP, LIBSSH2_SFTP_S_IWUSR, \
LIBSSH2_SFTP_S_IROTH
USERNAME = os.getlogin()
parser = argparse.ArgumentParser()
parser.add_argument('source', help="Source file to copy")
parser.add_argument('destination', help="Remote destination file to copy to")
parser.add_argument('--host', dest='host',
default='localhost',
help='Host to connect to')
parser.add_argument('--port', dest='port', default=22, help="Port to connect on", type=int)
parser.add_argument('-u', dest='user', default=USERNAME, help="User name to authenticate as")
def main():
buf_size = 1024 * 1024
args = parser.parse_args()
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
sock.connect((args.host, args.port))
s = Session()
s.handshake(sock)
s.agent_auth(args.user)
sftp = s.sftp_init()
mode = LIBSSH2_SFTP_S_IRUSR | \
LIBSSH2_SFTP_S_IWUSR | \
LIBSSH2_SFTP_S_IRGRP | \
LIBSSH2_SFTP_S_IROTH
f_flags = LIBSSH2_FXF_CREAT | LIBSSH2_FXF_WRITE
fileinfo = os.stat(args.source)
print("Starting copy of local file %s to remote %s:%s" % (
args.source, args.host, args.destination))
now = datetime.now()
with open(args.source, 'rb', buf_size) as local_fh, \
sftp.open(args.destination, f_flags, mode) as remote_fh:
data = local_fh.read(buf_size)
while data:
remote_fh.write(data)
data = local_fh.read(buf_size)
taken = datetime.now() - now
rate = (fileinfo.st_size / 1024000.0) / taken.total_seconds()
print(f"Finished writing remote file in {taken}, transfer rate {rate} MB/s")
if __name__ == "__main__":
main()