diff --git a/README.rst b/README.rst index f95374a..3f3f2f0 100644 --- a/README.rst +++ b/README.rst @@ -229,12 +229,24 @@ The last possibility is to instantiate each module by itself .. code-block:: python - >>> from ssh_utilities import Connection, Os, Subprocess >>> conn = Connection.get(, , , ) >>> remote_os = Os(conn) >>> remote_subprocess = Subprocess(conn) +ssh_utilities now contains ``MultiConnection`` container which cleverly +manages multiple individual connections for you. You can carry out same +command across multiple servers asynchronously and many more! Detailed +information is in the docs. + +.. code-block:: python + + >>> from ssh_utilities import MultiConnection + >>> with MultiConnection(, local=False, + thread_safe=True) as mc: + >>> mc. + >>> ... + Contributing ------------