diff options
author | Robey Pointer <robey@lag.net> | 2004-04-07 16:05:48 +0000 |
---|---|---|
committer | Robey Pointer <robey@lag.net> | 2004-04-07 16:05:48 +0000 |
commit | 5691415af1c35fc6dc931d274726a9b336137483 (patch) | |
tree | 013047bbb2fdeb3307a81392359b8db5cc26f825 /README | |
parent | 17acfb5d28be4c5fec3253ef0f55ebc8007c1863 (diff) |
[project @ Arch-1:robey@lag.net--2003-public%secsh--dev--1.0--patch-46]
README update notes
added notes on what's new, what to watch out for in py22. added a "since:
fearow" to all the relevant API calls that are new.
Diffstat (limited to 'README')
-rw-r--r-- | README | 29 |
1 files changed, 26 insertions, 3 deletions
@@ -1,5 +1,5 @@ paramiko 0.9 -"eevee" release, 08 mar 2004 +"fearow" release, 06 apr 2004 Copyright (c) 2003-2004 Robey Pointer <robey@lag.net> @@ -51,8 +51,12 @@ python 2.2 may work, thanks to some patches from Roger Binns. things to watch out for: * sockets in 2.2 don't support timeouts, so the 'select' module is imported to do polling. this may not work on windows. (works fine on osx.) -* there is no logging, period. -you really should upgrade to python 2.3. laziness is no excuse! +* logging is mostly stubbed out. it works just enough to let paramiko create + log files for debugging, if you want them. to get real logging, you can + backport python 2.3's logging package. Roger has done that already: + http://sourceforge.net/project/showfiles.php?group_id=75211&package_id=113804 + +you really should upgrade to python 2.3. laziness is no excuse! :) *** DEMO @@ -95,6 +99,25 @@ not much is tested yet, but it's a start. the tests for SFTP are probably the best and easiest examples of how to use the SFTP class. +*** WHAT'S NEW + +highlights of what's new in each release: + +v0.9 FEAROW +* Transport.send_ignore() -- send random ignored bytes +* RSAKey/DSSKey added from_private_key_file() as a factory constructor; + write_private_key_file() & generate() to create and save ssh2 keys; + get_base64() to retrieve the exported public key +* Transport added global_request() [client] and check_global_request() [server] +* Transport.get_remove_server_key() now returns a PKey object instead of a + tuple of strings +* Transport.get_username() -- return the username you auth'd as [client] +* Transport.set_keepalive() -- makes paramiko send periodic junk packets to the + remote host, to keep the session active +* python 2.2 support (thanks to Roger Binns) +* misc. bug fixes + + *** MISSING LINKS * ctr forms of ciphers are missing (blowfish-ctr, aes128-ctr, aes256-ctr) |