You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.rst
+6-7Lines changed: 6 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -39,15 +39,15 @@ _____________
39
39
40
40
Majority of the `libssh2`_ API has been implemented. ``ssh2-python`` is a thin wrapper of ``libssh2`` - its code examples can be ported straight over to Python with only minimal changes.
41
41
42
-
Some parts are yet to be implemented though majority of the API is complete. Note current restriction on byte strings in examples section.
42
+
Some parts are yet to be implemented though majority of the API is complete.
43
43
44
44
*Library is at the moment available as source code only. Binary releases to follow.*
45
45
46
46
47
47
Examples
48
48
___________
49
49
50
-
Currently all string arguments are assumed to be byte strings - Python 3 users should use ``b'<string>'``.
50
+
Both byte and unicode strings are accepted as arguments and encoded appropriately. To change default encoding change the value of ``ssh2.utils.ENCODING``. Channel output is always byte strings.
51
51
52
52
See `Complete Example`_ for a complete example including socket connect.
53
53
@@ -203,15 +203,14 @@ Clients using this library can be much simpler to use than interfacing with the
203
203
Exit status: 2
204
204
205
205
206
-
SSH Functionality currently provided
207
-
_____________________________________
206
+
SSH Functionality currently implemented
207
+
________________________________________
208
208
209
209
210
-
* SSH channel operations (exec,shell,subsystem)
210
+
* SSH channel operations (exec,shell,subsystem) and methods
0 commit comments