Metadata-Version: 2.4
Name: graphtec-api
Version: 1.0.0
Summary: Librería en Python para el control y adquisición de datos del Datalogger GL100
Author-email: Miguel Chen Zheng <tu_email_universidad@alumnos.upm.es>
Project-URL: Homepage, https://github.com/miguel-cz/graphtec-api
Project-URL: Bug Tracker, https://github.com/miguel-cz/graphtec-api/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Science/Research
Requires-Python: >=3.13
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pyserial>=3.5
Requires-Dist: xlsxwriter>=3.2.9
Dynamic: license-file

# Graphtec-API
```
Graphtec-API
├─ graphtec
│  ├─ api
│  │  ├─ public.py
│  │  └─ __init__.py
│  ├─ config
│  │  └─ config_manager.py
│  ├─ connection
│  │  ├─ base.py
│  │  ├─ serial_connection.py
│  │  ├─ usb_connection.py
│  │  ├─ wlan_connection.py
│  │  └─ __init__.py
│  ├─ core
│  │  ├─ commands.py
│  │  ├─ device
│  │  │  ├─ alarm.py
│  │  │  ├─ amp.py
│  │  │  ├─ base.py
│  │  │  ├─ common.py
│  │  │  ├─ data.py
│  │  │  ├─ file.py
│  │  │  ├─ interface.py
│  │  │  ├─ logic.py
│  │  │  ├─ measure.py
│  │  │  ├─ option.py
│  │  │  ├─ status.py
│  │  │  ├─ transfer.py
│  │  │  ├─ trigger.py
│  │  │  └─ __init__.py
│  │  ├─ exceptions.py
│  │  └─ __init__.py
│  ├─ io
│  │  ├─ capture.py
│  │  ├─ decoder.py
│  │  ├─ realtime.py
│  │  └─ __init__.py
│  ├─ utils
│  │  ├─ logger.py
│  │  ├─ utils.py
│  │  └─ __init__.py
│  ├─ _version.py
│  └─ __init__.py
├─ LICENSE
├─ main.py
├─ pytest.ini
├─ README.md
├─ requirements-dev.txt
├─ requirements.txt
└─ tests
   ├─ conftest.py
   ├─ integration
   │  └─ test_public_api.py
   ├─ mocks
   │  ├─ mock_connection.py
   │  └─ responses.py
   └─ unit
      ├─ test_amp.py
      ├─ test_common.py
      ├─ test_data.py
      ├─ test_logic.py
      ├─ test_option.py
      ├─ test_status.py
      └─ test_trigger.py

```
