├── .gitignore ├── .pylintrc ├── .readthedocs.yaml ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── VERSION ├── docs-requirements.txt ├── docs ├── _static │ ├── IPython_info.PNG │ ├── favicon.ico │ └── lakeshore_logo.png ├── advanced.rst ├── conf.py ├── em_power_supply.rst ├── examples │ ├── 121_setting_current_example.py │ ├── 240_measurement_setup_example.py │ ├── 240_profislot_config_example.py │ ├── 335_autotune_example.py │ ├── 335_record_data_example.py │ ├── 336_heater_setup_example.py │ ├── 372_control_loop_example.py │ ├── 372_input_setup_example.py │ ├── 643_current_set_example.py │ ├── 648_magnet_water.py │ ├── 648_status_register.py │ ├── M81_lock_in_resistance_measurement.py │ ├── fasthall_full_sample_analysis.py │ ├── fasthall_record_contact_check_data_example.py │ ├── precision_source_sweep_example.py │ ├── ssm_ac_sweep_and_stream_example.py │ ├── ssm_data_streaming_example.py │ ├── ssm_profiles_example.py │ ├── ssm_simple_sweep_example.py │ ├── ssm_sweep_and_stream_example.py │ ├── temperature_monitor_curve_example.py │ └── teslameter_record_data_example.py ├── fast_hall.rst ├── getting_started.rst ├── index.rst ├── installation.rst ├── local-doc-generation.md ├── model_121.rst ├── model_224.rst ├── model_240.rst ├── model_335.rst ├── model_336.rst ├── model_350.rst ├── model_372.rst ├── model_425.rst ├── precision_source.rst ├── ssm_system.rst ├── supported_instruments.rst └── teslameter.rst ├── lakeshore ├── __init__.py ├── em_power_supply.py ├── fast_hall_controller.py ├── generic_instrument.py ├── model_121.py ├── model_155.py ├── model_224.py ├── model_224_enums.py ├── model_240.py ├── model_240_enums.py ├── model_335.py ├── model_335_enums.py ├── model_336.py ├── model_336_enums.py ├── model_350.py ├── model_372.py ├── model_372_enums.py ├── model_425.py ├── requires_firmware_version.py ├── ssm_base_module.py ├── ssm_measure_module.py ├── ssm_settings_profiles.py ├── ssm_source_module.py ├── ssm_system.py ├── ssm_system_enums.py ├── temperature_controllers.py ├── temperature_controllers_enums.py ├── teslameter.py └── xip_instrument.py ├── pipeline.yaml ├── setup.py ├── tests ├── __init__.py ├── test_121.py ├── test_224.py ├── test_240.py ├── test_372.py ├── test_em_power_supply.py ├── test_fast_hall.py ├── test_model_335.py ├── test_model_336.py ├── test_requires_firmware_version.py ├── test_ssm_system.py ├── test_temperature_controllers.py ├── test_teslameter.py ├── test_xip_base.py └── utils.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/.pylintrc -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.9.2 -------------------------------------------------------------------------------- /docs-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/docs-requirements.txt -------------------------------------------------------------------------------- /docs/_static/IPython_info.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/docs/_static/IPython_info.PNG -------------------------------------------------------------------------------- /docs/_static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/docs/_static/favicon.ico -------------------------------------------------------------------------------- /docs/_static/lakeshore_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/docs/_static/lakeshore_logo.png -------------------------------------------------------------------------------- /docs/advanced.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/docs/advanced.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/em_power_supply.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/docs/em_power_supply.rst -------------------------------------------------------------------------------- /docs/examples/121_setting_current_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/docs/examples/121_setting_current_example.py -------------------------------------------------------------------------------- /docs/examples/240_measurement_setup_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/docs/examples/240_measurement_setup_example.py -------------------------------------------------------------------------------- /docs/examples/240_profislot_config_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/docs/examples/240_profislot_config_example.py -------------------------------------------------------------------------------- /docs/examples/335_autotune_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/docs/examples/335_autotune_example.py -------------------------------------------------------------------------------- /docs/examples/335_record_data_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/docs/examples/335_record_data_example.py -------------------------------------------------------------------------------- /docs/examples/336_heater_setup_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/docs/examples/336_heater_setup_example.py -------------------------------------------------------------------------------- /docs/examples/372_control_loop_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/docs/examples/372_control_loop_example.py -------------------------------------------------------------------------------- /docs/examples/372_input_setup_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/docs/examples/372_input_setup_example.py -------------------------------------------------------------------------------- /docs/examples/643_current_set_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/docs/examples/643_current_set_example.py -------------------------------------------------------------------------------- /docs/examples/648_magnet_water.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/docs/examples/648_magnet_water.py -------------------------------------------------------------------------------- /docs/examples/648_status_register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/docs/examples/648_status_register.py -------------------------------------------------------------------------------- /docs/examples/M81_lock_in_resistance_measurement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/docs/examples/M81_lock_in_resistance_measurement.py -------------------------------------------------------------------------------- /docs/examples/fasthall_full_sample_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/docs/examples/fasthall_full_sample_analysis.py -------------------------------------------------------------------------------- /docs/examples/fasthall_record_contact_check_data_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/docs/examples/fasthall_record_contact_check_data_example.py -------------------------------------------------------------------------------- /docs/examples/precision_source_sweep_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/docs/examples/precision_source_sweep_example.py -------------------------------------------------------------------------------- /docs/examples/ssm_ac_sweep_and_stream_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/docs/examples/ssm_ac_sweep_and_stream_example.py -------------------------------------------------------------------------------- /docs/examples/ssm_data_streaming_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/docs/examples/ssm_data_streaming_example.py -------------------------------------------------------------------------------- /docs/examples/ssm_profiles_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/docs/examples/ssm_profiles_example.py -------------------------------------------------------------------------------- /docs/examples/ssm_simple_sweep_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/docs/examples/ssm_simple_sweep_example.py -------------------------------------------------------------------------------- /docs/examples/ssm_sweep_and_stream_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/docs/examples/ssm_sweep_and_stream_example.py -------------------------------------------------------------------------------- /docs/examples/temperature_monitor_curve_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/docs/examples/temperature_monitor_curve_example.py -------------------------------------------------------------------------------- /docs/examples/teslameter_record_data_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/docs/examples/teslameter_record_data_example.py -------------------------------------------------------------------------------- /docs/fast_hall.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/docs/fast_hall.rst -------------------------------------------------------------------------------- /docs/getting_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/docs/getting_started.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/local-doc-generation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/docs/local-doc-generation.md -------------------------------------------------------------------------------- /docs/model_121.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/docs/model_121.rst -------------------------------------------------------------------------------- /docs/model_224.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/docs/model_224.rst -------------------------------------------------------------------------------- /docs/model_240.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/docs/model_240.rst -------------------------------------------------------------------------------- /docs/model_335.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/docs/model_335.rst -------------------------------------------------------------------------------- /docs/model_336.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/docs/model_336.rst -------------------------------------------------------------------------------- /docs/model_350.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/docs/model_350.rst -------------------------------------------------------------------------------- /docs/model_372.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/docs/model_372.rst -------------------------------------------------------------------------------- /docs/model_425.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/docs/model_425.rst -------------------------------------------------------------------------------- /docs/precision_source.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/docs/precision_source.rst -------------------------------------------------------------------------------- /docs/ssm_system.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/docs/ssm_system.rst -------------------------------------------------------------------------------- /docs/supported_instruments.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/docs/supported_instruments.rst -------------------------------------------------------------------------------- /docs/teslameter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/docs/teslameter.rst -------------------------------------------------------------------------------- /lakeshore/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/lakeshore/__init__.py -------------------------------------------------------------------------------- /lakeshore/em_power_supply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/lakeshore/em_power_supply.py -------------------------------------------------------------------------------- /lakeshore/fast_hall_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/lakeshore/fast_hall_controller.py -------------------------------------------------------------------------------- /lakeshore/generic_instrument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/lakeshore/generic_instrument.py -------------------------------------------------------------------------------- /lakeshore/model_121.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/lakeshore/model_121.py -------------------------------------------------------------------------------- /lakeshore/model_155.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/lakeshore/model_155.py -------------------------------------------------------------------------------- /lakeshore/model_224.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/lakeshore/model_224.py -------------------------------------------------------------------------------- /lakeshore/model_224_enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/lakeshore/model_224_enums.py -------------------------------------------------------------------------------- /lakeshore/model_240.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/lakeshore/model_240.py -------------------------------------------------------------------------------- /lakeshore/model_240_enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/lakeshore/model_240_enums.py -------------------------------------------------------------------------------- /lakeshore/model_335.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/lakeshore/model_335.py -------------------------------------------------------------------------------- /lakeshore/model_335_enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/lakeshore/model_335_enums.py -------------------------------------------------------------------------------- /lakeshore/model_336.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/lakeshore/model_336.py -------------------------------------------------------------------------------- /lakeshore/model_336_enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/lakeshore/model_336_enums.py -------------------------------------------------------------------------------- /lakeshore/model_350.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/lakeshore/model_350.py -------------------------------------------------------------------------------- /lakeshore/model_372.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/lakeshore/model_372.py -------------------------------------------------------------------------------- /lakeshore/model_372_enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/lakeshore/model_372_enums.py -------------------------------------------------------------------------------- /lakeshore/model_425.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/lakeshore/model_425.py -------------------------------------------------------------------------------- /lakeshore/requires_firmware_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/lakeshore/requires_firmware_version.py -------------------------------------------------------------------------------- /lakeshore/ssm_base_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/lakeshore/ssm_base_module.py -------------------------------------------------------------------------------- /lakeshore/ssm_measure_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/lakeshore/ssm_measure_module.py -------------------------------------------------------------------------------- /lakeshore/ssm_settings_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/lakeshore/ssm_settings_profiles.py -------------------------------------------------------------------------------- /lakeshore/ssm_source_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/lakeshore/ssm_source_module.py -------------------------------------------------------------------------------- /lakeshore/ssm_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/lakeshore/ssm_system.py -------------------------------------------------------------------------------- /lakeshore/ssm_system_enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/lakeshore/ssm_system_enums.py -------------------------------------------------------------------------------- /lakeshore/temperature_controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/lakeshore/temperature_controllers.py -------------------------------------------------------------------------------- /lakeshore/temperature_controllers_enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/lakeshore/temperature_controllers_enums.py -------------------------------------------------------------------------------- /lakeshore/teslameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/lakeshore/teslameter.py -------------------------------------------------------------------------------- /lakeshore/xip_instrument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/lakeshore/xip_instrument.py -------------------------------------------------------------------------------- /pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/pipeline.yaml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_121.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/tests/test_121.py -------------------------------------------------------------------------------- /tests/test_224.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/tests/test_224.py -------------------------------------------------------------------------------- /tests/test_240.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/tests/test_240.py -------------------------------------------------------------------------------- /tests/test_372.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/tests/test_372.py -------------------------------------------------------------------------------- /tests/test_em_power_supply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/tests/test_em_power_supply.py -------------------------------------------------------------------------------- /tests/test_fast_hall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/tests/test_fast_hall.py -------------------------------------------------------------------------------- /tests/test_model_335.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/tests/test_model_335.py -------------------------------------------------------------------------------- /tests/test_model_336.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/tests/test_model_336.py -------------------------------------------------------------------------------- /tests/test_requires_firmware_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/tests/test_requires_firmware_version.py -------------------------------------------------------------------------------- /tests/test_ssm_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/tests/test_ssm_system.py -------------------------------------------------------------------------------- /tests/test_temperature_controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/tests/test_temperature_controllers.py -------------------------------------------------------------------------------- /tests/test_teslameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/tests/test_teslameter.py -------------------------------------------------------------------------------- /tests/test_xip_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/tests/test_xip_base.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/tests/utils.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakeshorecryotronics/python-driver/HEAD/tox.ini --------------------------------------------------------------------------------