We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 338d2e5 commit 2743e2eCopy full SHA for 2743e2e
src/geocompy/__init__.py
@@ -60,6 +60,9 @@
60
``geocompy.communication.open_serial``
61
Serial connection context manager function.
62
63
+``geocompy.communication.open_socket``
64
+ Socket connection context manager function.
65
+
66
``geocompy.gsi.dna.GsiOnlineDNA``
67
DNA instrument implementation.
68
@@ -86,7 +89,10 @@
86
89
Coordinate as Coordinate
87
90
)
88
91
-from .communication import open_serial as open_serial # noqa: F401
92
+from .communication import ( # noqa: F401
93
+ open_serial as open_serial,
94
+ open_socket as open_socket
95
+)
96
97
from .gsi.gsitypes import GsiOnlineResponse as GsiOnlineResponse # noqa: F401
98
from .gsi.dna import GsiOnlineDNA as GsiOnlineDNA # noqa: F401
0 commit comments