Skip to content

Commit 796d341

Browse files
committed
Allow for global name import of the library.
Add enums to clean up any symbols from libssh2 and make interacting with them much easier to do. Add additional unit tests for ParallelSSH#86
1 parent 87cceeb commit 796d341

File tree

5 files changed

+5477
-438
lines changed

5 files changed

+5477
-438
lines changed

ssh2/__init__.py

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
11
from ._version import get_versions
22
__version__ = get_versions()['version']
33
del get_versions
4+
5+
from . import session
6+
from . import channel
7+
from . import sftp
8+
from . import exceptions
9+
from . import knownhost
10+
from . import agent
11+
from . import listener
12+
from . import pkey as privatekey
13+
from . import publickey
14+
from . import sftp_handle
15+
from . import fileinfo
16+
from . import statinfo
17+
from . import utils
18+
from . import libssh2_enums as enums

0 commit comments

Comments
 (0)