Advertisement
Guest User

Untitled

a guest
Oct 14th, 2017
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. import pysftp
  2.  
  3. cnopts = pysftp.CnOpts()
  4. cnopts.hostkeys = None
  5. srv = pysftp.Connection(host="IP", username="USER", password="PASS", cnopts=cnopts)
  6. srv.get('/home/steam/starbound/mods/Bunnykin/', 'D:\\mods')
  7. srv.close()
  8. sleep()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement