@@ -61,11 +61,12 @@ and command execution. The API vaguely follows python libraries: `builtins`_,
61
61
62
62
63
63
This is not intended to be a full fledged python ssh client. Instead it focuses
64
- on smaller set of features which it trie to make as user-friendly as possible.
64
+ on smaller set of features which it tries to make as user-friendly and familiar
65
+ as possible.
65
66
66
67
This module should be ideally platform agnostic, but only connections from
67
68
Windows and Linux(Debian, Ubuntu) to Linux(Debian, Ubuntu) have been tested
68
- so any other combinations are officially unsupported but should work.
69
+ so any other combinations are officially unsupported but should still work.
69
70
70
71
Design goals and features
71
72
-------------------------
@@ -86,12 +87,12 @@ List of inner classes and implemented methods
86
87
---------------------------------------------
87
88
88
89
ssh_utilities have three main connection classes:
89
- - ``SSHConnection ``
90
- - ``LocalConnection ``
91
- - ``MultiConnection ``
90
+ - ``SSHConnection ``
91
+ - ``LocalConnection ``
92
+ - ``MultiConnection ``
92
93
93
94
Their inner classes with their methods are listed in the table below which
94
- summarizes the API. based on table you can do for instance:
95
+ summarizes the API. Based on table you can do for instance:
95
96
96
97
.. code-block :: python
97
98
@@ -186,8 +187,7 @@ for more detailed usage examples please refer to
186
187
`documnetation <https://ssh-utilities.readthedocs.io/en/latest/ >`_
187
188
188
189
``Connection `` factory supports dict-like indexing by values that are in
189
- your **~/.ssh/config ** file. It can be made thread safe by passing
190
- ``thread_safe=True `` argument to the constructor
190
+ your **~/.ssh/config ** file.
191
191
192
192
.. code-block :: python
193
193
@@ -196,7 +196,8 @@ your **~/.ssh/config** file. It can be made thread safe by passing
196
196
>> > < ssh_utilities.ssh_utils.SSHConnection at 0x 7efedff4fb38>
197
197
198
198
There is also a specific get method which is safer and with better typing
199
- support than dict-like indexing
199
+ support than dict-like indexing. Connection can be made thread safe by passing
200
+ ``thread_safe=True `` argument to the constructor
200
201
201
202
.. code-block :: python
202
203
0 commit comments