We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b885b5 commit 491467aCopy full SHA for 491467a
src/geocompy/__init__.py
@@ -72,6 +72,12 @@
72
``geocompy.data.Coordinate``
73
3D coordinate primitive.
74
75
+``geocompy.communication.open_serial``
76
+ Serial connection context manager function.
77
+
78
+``geocompy.communication.get_logger``
79
+ Utility function to create logger objects.
80
81
``geocompy.protocols.GeoComResponse``
82
GeoCom protocol response container.
83
@@ -118,6 +124,11 @@
118
124
Coordinate as Coordinate
119
125
)
120
126
127
+from .communication import ( # noqa: F401
128
+ open_serial as open_serial,
129
+ get_logger as get_logger
130
+)
131
121
132
from .protocols import ( # noqa: F401
122
133
GeoComResponse as GeoComResponse,
123
134
GsiOnlineResponse as GsiOnlineResponse
0 commit comments