{"library":"mat-io","title":"mat-io","description":"A modern Python library for reading and writing MATLAB .mat files (v7 and v7.3 formats) with native support for MATLAB datatypes like table, string, datetime, struct, and cell. Version 0.7.1 runs on Python ≥3.11. Development is active, with regular releases.","language":"python","status":"active","last_verified":"Mon Apr 27","install":{"commands":["pip install mat-io"],"cli":null},"imports":["from matio import MatFileReader","from matio import MatFileWriter","from matio import MatObject"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"from matio import MatFileReader\nimport os\n\nfilename = 'example.mat'\nif os.path.exists(filename):\n    reader = MatFileReader(filename)\n    data = reader.read()\n    print(data.keys())\nelse:\n    print('File not found.')","lang":"python","description":"Load a .mat file and print variable names.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}