File: __init__.py

package info (click to toggle)
medcom-ble 0.1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 88 kB
  • sloc: python: 175; makefile: 8
file content (8 lines) | stat: -rw-r--r-- 218 bytes parent folder | download
1
2
3
4
5
6
7
8
"""Parser for Medcom BLE radiation monitors."""
from __future__ import annotations

from .parser import MedcomBleDevice, MedcomBleDeviceData

__version__ = "0.1.0"

__all__ = ["MedcomBleDeviceData", "MedcomBleDevice"]