FTPLIB & FTPS or SFTP?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Peter A. Schott

    FTPLIB & FTPS or SFTP?

    Does the ftplib support SFTP or FTPS? Is that part of a different module? We
    have a handful of partners who use FTPS or SFTP and I need to pull/push files
    to/from them.


    Thank you for all of your help.

    -Pete Schott
  • srijit@yahoo.com

    #2
    Re: FTPLIB & FTPS or SFTP?

    To the best of my knowledge ftplib does not support SFTP or FTPS.
    I hope Paramiko (http://www.lag.net/paramiko/) serves your purpose.
    Paramiko supports POSIX, Windows and MacOSX

    Regards,
    /Srijit

    Peter A. Schott wrote:[color=blue]
    > Does the ftplib support SFTP or FTPS? Is that part of a different[/color]
    module? We[color=blue]
    > have a handful of partners who use FTPS or SFTP and I need to[/color]
    pull/push files[color=blue]
    > to/from them.
    >
    >
    > Thank you for all of your help.
    >
    > -Pete Schott[/color]

    Comment

    • Roger Binns

      #3
      Re: FTPLIB & FTPS or SFTP?


      "Peter A. Schott" <paschott@no.ya hoo.spamm.com> wrote in message news:9b9tu0te19 7u3bmheldg2hsvk btuivlov6@4ax.c om...[color=blue]
      > have a handful of partners who use FTPS or SFTP and I need to pull/push files
      > to/from them.[/color]

      For SFTP, run don't walk, over to http://www.lag.net/paramiko/

      Paramiko is a pure Python(*) implementation of SSH and all the
      sub-protocols such as SFTP. Works on all platforms, very responsive
      author, works reliably and LGPL license.

      (*) It does require PyCrypto which is a native code package available
      for all platforms.

      Roger


      Comment

      • Peter A. Schott

        #4
        Re: FTPLIB &amp; FTPS or SFTP?

        Can't seem to hit the site right now. I'll have to try back later. From what I
        can tell, there aren't any mirrors set up, either. Two quick recommendations is
        promising, though.

        Thanks for the recommendations .

        -Pete

        "Roger Binns" <rogerb@rogerbi nns.com> wrote:
        [color=blue]
        >
        > "Peter A. Schott" <paschott@no.ya hoo.spamm.com> wrote in message news:9b9tu0te19 7u3bmheldg2hsvk btuivlov6@4ax.c om...[color=green]
        > > have a handful of partners who use FTPS or SFTP and I need to pull/push files
        > > to/from them.[/color]
        >
        > For SFTP, run don't walk, over to http://www.lag.net/paramiko/
        >
        > Paramiko is a pure Python(*) implementation of SSH and all the
        > sub-protocols such as SFTP. Works on all platforms, very responsive
        > author, works reliably and LGPL license.
        >
        > (*) It does require PyCrypto which is a native code package available
        > for all platforms.
        >
        > Roger
        >[/color]

        Comment

        Working...