20 lines
545 B
Python
20 lines
545 B
Python
"""
|
|
minimateplus — Instantel MiniMate Plus protocol library.
|
|
|
|
Provides a clean Python API for communicating with MiniMate Plus seismographs
|
|
over RS-232 serial (direct cable) or TCP (via RV50 cellular modem bridge).
|
|
|
|
Typical usage:
|
|
from minimateplus import MiniMateClient
|
|
|
|
with MiniMateClient("COM5") as device:
|
|
info = device.connect()
|
|
events = device.get_events()
|
|
"""
|
|
|
|
from .client import MiniMateClient
|
|
from .models import DeviceInfo, Event
|
|
|
|
__version__ = "0.1.0"
|
|
__all__ = ["MiniMateClient", "DeviceInfo", "Event"]
|