├── .dir-locals.el ├── .github └── workflows │ ├── pre-commit.yml │ └── pytest.yml ├── .gitignore ├── .mailmap ├── .mergify.yml ├── .pre-commit-config.yaml ├── .pylintrc ├── AUTHORS ├── LICENSES ├── 0BSD.txt └── MIT.txt ├── README.md ├── glucometer.py ├── glucometerutils ├── __init__.py ├── common.py ├── driver.py ├── drivers │ ├── __init__.py │ ├── accuchek_reports.py │ ├── contourusb.py │ ├── fsfreedomlite.py │ ├── fsinsulinx.py │ ├── fslibre.py │ ├── fslibre2.py │ ├── fsoptium.py │ ├── fsprecisionneo.py │ ├── glucomenareo.py │ ├── otultra2.py │ ├── otultraeasy.py │ ├── otverio2015.py │ ├── otverioiq.py │ ├── py.typed │ ├── sdcodefree.py │ ├── td42xx.py │ └── tests │ │ ├── __init__.py │ │ ├── test_contourusb.py │ │ ├── test_fsoptium.py │ │ ├── test_otultra2.py │ │ ├── test_otultraeasy.py │ │ └── test_td42xx.py ├── exceptions.py ├── glucometer.py ├── py.typed ├── support │ ├── __init__.py │ ├── construct_extras.py │ ├── contourusb.py │ ├── freestyle.py │ ├── freestyle_libre.py │ ├── hiddevice.py │ ├── lifescan.py │ ├── lifescan_binary_protocol.py │ ├── py.typed │ ├── serial.py │ └── tests │ │ ├── __init__.py │ │ ├── test_construct_extras.py │ │ └── test_lifescan.py └── tests │ ├── __init__.py │ └── test_common.py ├── mypy.ini ├── pyproject.toml ├── setup.cfg ├── setup.py └── udev └── 69-glucometerutils.rules /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.github/workflows/pre-commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/.github/workflows/pre-commit.yml -------------------------------------------------------------------------------- /.github/workflows/pytest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/.github/workflows/pytest.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/.mailmap -------------------------------------------------------------------------------- /.mergify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/.mergify.yml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/.pylintrc -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSES/0BSD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/LICENSES/0BSD.txt -------------------------------------------------------------------------------- /LICENSES/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/LICENSES/MIT.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/README.md -------------------------------------------------------------------------------- /glucometer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/glucometer.py -------------------------------------------------------------------------------- /glucometerutils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /glucometerutils/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/glucometerutils/common.py -------------------------------------------------------------------------------- /glucometerutils/driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/glucometerutils/driver.py -------------------------------------------------------------------------------- /glucometerutils/drivers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /glucometerutils/drivers/accuchek_reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/glucometerutils/drivers/accuchek_reports.py -------------------------------------------------------------------------------- /glucometerutils/drivers/contourusb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/glucometerutils/drivers/contourusb.py -------------------------------------------------------------------------------- /glucometerutils/drivers/fsfreedomlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/glucometerutils/drivers/fsfreedomlite.py -------------------------------------------------------------------------------- /glucometerutils/drivers/fsinsulinx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/glucometerutils/drivers/fsinsulinx.py -------------------------------------------------------------------------------- /glucometerutils/drivers/fslibre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/glucometerutils/drivers/fslibre.py -------------------------------------------------------------------------------- /glucometerutils/drivers/fslibre2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/glucometerutils/drivers/fslibre2.py -------------------------------------------------------------------------------- /glucometerutils/drivers/fsoptium.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/glucometerutils/drivers/fsoptium.py -------------------------------------------------------------------------------- /glucometerutils/drivers/fsprecisionneo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/glucometerutils/drivers/fsprecisionneo.py -------------------------------------------------------------------------------- /glucometerutils/drivers/glucomenareo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/glucometerutils/drivers/glucomenareo.py -------------------------------------------------------------------------------- /glucometerutils/drivers/otultra2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/glucometerutils/drivers/otultra2.py -------------------------------------------------------------------------------- /glucometerutils/drivers/otultraeasy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/glucometerutils/drivers/otultraeasy.py -------------------------------------------------------------------------------- /glucometerutils/drivers/otverio2015.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/glucometerutils/drivers/otverio2015.py -------------------------------------------------------------------------------- /glucometerutils/drivers/otverioiq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/glucometerutils/drivers/otverioiq.py -------------------------------------------------------------------------------- /glucometerutils/drivers/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/glucometerutils/drivers/py.typed -------------------------------------------------------------------------------- /glucometerutils/drivers/sdcodefree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/glucometerutils/drivers/sdcodefree.py -------------------------------------------------------------------------------- /glucometerutils/drivers/td42xx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/glucometerutils/drivers/td42xx.py -------------------------------------------------------------------------------- /glucometerutils/drivers/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /glucometerutils/drivers/tests/test_contourusb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/glucometerutils/drivers/tests/test_contourusb.py -------------------------------------------------------------------------------- /glucometerutils/drivers/tests/test_fsoptium.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/glucometerutils/drivers/tests/test_fsoptium.py -------------------------------------------------------------------------------- /glucometerutils/drivers/tests/test_otultra2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/glucometerutils/drivers/tests/test_otultra2.py -------------------------------------------------------------------------------- /glucometerutils/drivers/tests/test_otultraeasy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/glucometerutils/drivers/tests/test_otultraeasy.py -------------------------------------------------------------------------------- /glucometerutils/drivers/tests/test_td42xx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/glucometerutils/drivers/tests/test_td42xx.py -------------------------------------------------------------------------------- /glucometerutils/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/glucometerutils/exceptions.py -------------------------------------------------------------------------------- /glucometerutils/glucometer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/glucometerutils/glucometer.py -------------------------------------------------------------------------------- /glucometerutils/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/glucometerutils/py.typed -------------------------------------------------------------------------------- /glucometerutils/support/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /glucometerutils/support/construct_extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/glucometerutils/support/construct_extras.py -------------------------------------------------------------------------------- /glucometerutils/support/contourusb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/glucometerutils/support/contourusb.py -------------------------------------------------------------------------------- /glucometerutils/support/freestyle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/glucometerutils/support/freestyle.py -------------------------------------------------------------------------------- /glucometerutils/support/freestyle_libre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/glucometerutils/support/freestyle_libre.py -------------------------------------------------------------------------------- /glucometerutils/support/hiddevice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/glucometerutils/support/hiddevice.py -------------------------------------------------------------------------------- /glucometerutils/support/lifescan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/glucometerutils/support/lifescan.py -------------------------------------------------------------------------------- /glucometerutils/support/lifescan_binary_protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/glucometerutils/support/lifescan_binary_protocol.py -------------------------------------------------------------------------------- /glucometerutils/support/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/glucometerutils/support/py.typed -------------------------------------------------------------------------------- /glucometerutils/support/serial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/glucometerutils/support/serial.py -------------------------------------------------------------------------------- /glucometerutils/support/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /glucometerutils/support/tests/test_construct_extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/glucometerutils/support/tests/test_construct_extras.py -------------------------------------------------------------------------------- /glucometerutils/support/tests/test_lifescan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/glucometerutils/support/tests/test_lifescan.py -------------------------------------------------------------------------------- /glucometerutils/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /glucometerutils/tests/test_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/glucometerutils/tests/test_common.py -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/mypy.ini -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/setup.py -------------------------------------------------------------------------------- /udev/69-glucometerutils.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometerutils/HEAD/udev/69-glucometerutils.rules --------------------------------------------------------------------------------