@@ -61,11 +61,12 @@ and command execution. The API vaguely follows python libraries: `builtins`_,
6161
6262
6363This 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.
6566
6667This module should be ideally platform agnostic, but only connections from
6768Windows 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.
6970
7071Design goals and features
7172-------------------------
@@ -86,12 +87,12 @@ List of inner classes and implemented methods
8687---------------------------------------------
8788
8889ssh_utilities have three main connection classes:
89- - ``SSHConnection ``
90- - ``LocalConnection ``
91- - ``MultiConnection ``
90+ - ``SSHConnection ``
91+ - ``LocalConnection ``
92+ - ``MultiConnection ``
9293
9394Their 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:
9596
9697 .. code-block :: python
9798
@@ -186,8 +187,7 @@ for more detailed usage examples please refer to
186187`documnetation <https://ssh-utilities.readthedocs.io/en/latest/ >`_
187188
188189``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.
191191
192192.. code-block :: python
193193
@@ -196,7 +196,8 @@ your **~/.ssh/config** file. It can be made thread safe by passing
196196 >> > < ssh_utilities.ssh_utils.SSHConnection at 0x 7efedff4fb38>
197197
198198 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
200201
201202.. code-block :: python
202203
0 commit comments