Metadata-Version: 2.1
Name: mvnx
Version: 0.1
Summary: A lightweight commandline parser for the MVNX motion capture file format
Home-page: https://github.com/alexharston/mvnx
Author: Alex Harston
Author-email: alex@harston.io
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: argparse
Requires-Dist: xml

# mvnx

### A lightweight python library for parsing the MVNX motion capture file format.

To run the MVNX parser, instantiate a ParseObject, and then parse the relevant attributes you want in the following manner:

```python
PO = ParseObject()
PO.parse_mvnx('path/to/file.mvnx')
PO.parse_modality('orientation')
PO.parse_modality('jointAngle')
PO.orientation
PO.jointAngle
```

Alternatively, you can run from the command line, using the modality of your choice (in this case, `jointAngle`):

`python3 mvnx.py path/to/file.mvnx --modality jointAngle`


