Differences between revisions 7 and 9 (spanning 2 versions)
Revision 7 as of 2011-01-26 16:38:28
Size: 1718
Editor: nat-dip6
Comment:
Revision 9 as of 2012-11-21 01:37:03
Size: 2124
Editor: cpe-075-182-109-236
Comment: wiki restore 2013-01-23
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
Line 2: Line 3:


== ssh ==


 * a fork of, and spiritual successor to, the Paramiko Python SSH library. It was created by the developers of the Fabric library as a way to ensure timely updates and bugfixes for critical issues.
 * http://pypi.python.org/pypi/ssh - in pypi as ssh
 * https://github.com/bitprophet/ssh/ - No longer receiving updates. Merged back to Paramiko
Line 5: Line 15:
Line 6: Line 17:
 * [[http://sourceforge.net/mailarchive/forum.php?forum=pyssh-discuss|pyssh mailing list]] -- not very active (<<Date(2006-03-26T00:20:01Z)>>)  * [[http://sourceforge.net/mailarchive/forum.php?forum=pyssh-discuss|pyssh mailing list]] -- not very active (2006-03-26)
Line 10: Line 22:
Line 12: Line 25:
Line 13: Line 27:
 * [[http://www.linuxplanet.com/linuxplanet/tutorials/6618/1/]] -- Example code at linuxplanet  * http://jessenoller.com/2009/02/05/ssh-programming-with-paramiko-completely-different/ -- Article by Jesse Noller
Line 17: Line 32:
Line 19: Line 35:
 * [[http://twistedmatrix.com/projects/conch]] -- conch home
* http://twistedmatrix.com/projects/conch -- conch home
Line 23: Line 41:
Line 24: Line 43:
Line 28: Line 48:
Line 30: Line 51:
 * [[http://py.vaults.ca/apyllo.py?find=ssh|ssh search]] -- on the VaultsOfParnassus
* [[http://py.vaults.ca/apyllo.py?find=ssh|ssh search]] -- on the [[VaultsOfParnassus|VaultsOfParnassus]]
Line 32: Line 54:
Line 35: Line 58:
Line 36: Line 60:
Line 39: Line 64:
-- LionKimbro <<DateTime(2006-03-26T00:20:01Z)>>
-- [[LionKimbro|LionKimbro]] 2006-03-26 00:20:01
Line 43: Line 70:
-- Vincent <<DateTime(2006-04-06T18:02:01Z)>>
-- Vincent 2006-04-06 18:02:01

There are several ways to use Secure Shell (SSH) in Python.

ssh

  • a fork of, and spiritual successor to, the Paramiko Python SSH library. It was created by the developers of the Fabric library as a way to ensure timely updates and bugfixes for critical issues.
  • http://pypi.python.org/pypi/ssh - in pypi as ssh

  • https://github.com/bitprophet/ssh/ - No longer receiving updates. Merged back to Paramiko

pyssh

paramiko

Paramiko is a native Python implementation of SSH.

conch

conch is another native implementation of SSH and part of the Twisted Matrix project

SSH wrapper

Some tools just wrap around existing ssh/sftp implementations.

See Also

Discussion

I'm investigating the use of SSH in Python.

I want something that will work in both Windows and Linux, that can operate like sftp/psftp. So, I'm thinking about paramiko, since it's pure Python.

-- LionKimbro 2006-03-26 00:20:01

You can use org.keyphrene. This library has been tested on Windows, Linux, and MacOS.

-- Vincent 2006-04-06 18:02:01

SecureShell (last edited 2014-02-05 01:57:26 by JJLin)

Unable to edit the page? See the FrontPage for instructions.