Size: 1743
Comment:
|
Size: 2389
Comment: Removing dead link
|
Deletions are marked like this. | Additions are marked like this. |
Line 2: | Line 2: |
== 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 14: |
Line 6: | Line 16: |
* [[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 21: |
Line 12: | Line 24: |
Line 13: | Line 26: |
* [[http://jessenoller.com/2009/02/05/ssh-programming-with-paramiko-completely-different/]] -- Article by Jesse Noller | * http://jessenoller.com/2009/02/05/ssh-programming-with-paramiko-completely-different/ -- Article by Jesse Noller |
Line 17: | Line 31: |
Line 19: | Line 34: |
* [[http://twistedmatrix.com/projects/conch]] -- conch home | * http://twistedmatrix.com/projects/conch -- conch home == Fabric == Fabric uses paramiko to implement a higher-level API for performing commands over SSH, particularly for deployment and system administration tasks. * http://fabfile.org == Spur == Spur is a thin wrapper around paramiko, aiming to provide a simpler API than paramiko for common SSH operations. * https://github.com/mwilliamson/spur.py |
Line 23: | Line 55: |
Line 24: | Line 57: |
Line 28: | Line 62: |
Line 30: | Line 65: |
* [[http://py.vaults.ca/apyllo.py?find=ssh|ssh search]] -- on the VaultsOfParnassus | |
Line 32: | Line 67: |
Line 35: | Line 71: |
Line 36: | Line 73: |
Line 39: | Line 77: |
-- LionKimbro <<DateTime(2006-03-26T00:20:01Z)>> | -- [[LionKimbro|LionKimbro]] 2006-03-26 00:20:01 |
Line 43: | Line 83: |
-- 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
pyssh website -- project home page
pyssh mailing list -- not very active (2006-03-26)
paramiko
Paramiko is a native Python implementation of SSH.
paramiko website -- project home page
http://jessenoller.com/2009/02/05/ssh-programming-with-paramiko-completely-different/ -- Article by Jesse Noller
conch
conch is another native implementation of SSH and part of the Twisted Matrix project
http://twistedmatrix.com/projects/conch -- conch home
Fabric
Fabric uses paramiko to implement a higher-level API for performing commands over SSH, particularly for deployment and system administration tasks.
Spur
Spur is a thin wrapper around paramiko, aiming to provide a simpler API than paramiko for common SSH operations.
SSH wrapper
Some tools just wrap around existing ssh/sftp implementations.
PySCP pscp wrapper -- wraps Windows pscp, which is part of the Putty suite
See Also
Wikipedia:SSH -- wikipedia article on Secure Shell
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