SSH File Transfer Protocol or SFTP

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Lad

    #1

    SSH File Transfer Protocol or SFTP

    Is there a module in Python available that I can use for uploading
    files via
    SFTP (SSH File Transfer Protocol)?
    Or do you think that FTP protocol for files uploading is OK?
    Thank you for replies
    Lad.

  • Jan Dries

    #2
    Re: SSH File Transfer Protocol or SFTP

    Lad wrote:
    Is there a module in Python available that I can use for uploading
    files via
    SFTP (SSH File Transfer Protocol)?
    Or do you think that FTP protocol for files uploading is OK?
    Thank you for replies
    Lad.
    You probably want Paramiko (http://www.lag.net/paramiko/). It provides
    extensive support for the SSH protocol, and ships with, among other
    things, a sample script demonstrating SFTP.

    Regards,
    Jan



    Comment

    • Avell Diroll

      #3
      Re: SSH File Transfer Protocol or SFTP

      Lad wrote:
      Is there a module in Python available that I can use for uploading
      files via
      SFTP (SSH File Transfer Protocol)?
      Or do you think that FTP protocol for files uploading is OK?
      Thank you for replies
      Lad.
      >
      I believe there are many of those, personally i am using paramiko :



      HIH

      -avell

      Comment

      • Lad

        #4
        Re: SSH File Transfer Protocol or SFTP


        Avell Diroll wrote:
        Lad wrote:
        Is there a module in Python available that I can use for uploading
        files via
        SFTP (SSH File Transfer Protocol)?
        Or do you think that FTP protocol for files uploading is OK?
        Thank you for replies
        Lad.
        >
        I believe there are many of those, personally i am using paramiko :
        >

        >
        Thank you ALL for help.
        Paramiko seems the best for my needs.
        Lad.

        Comment

        Working...