File: __init__.py

package info (click to toggle)
python-docker 7.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 748 kB
  • sloc: python: 6,986; makefile: 6
file content (12 lines) | stat: -rw-r--r-- 233 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
from .unixconn import UnixHTTPAdapter

try:
    from .npipeconn import NpipeHTTPAdapter
    from .npipesocket import NpipeSocket
except ImportError:
    pass

try:
    from .sshconn import SSHHTTPAdapter
except ImportError:
    pass