├── .gitignore ├── .vscode └── settings.json ├── README.md ├── __init__.py ├── mAsset.py ├── mCore.py ├── mExportTag.py ├── metaData.py └── tests ├── __init__.py ├── _testMetaData.py ├── test_mAsset.py ├── test_mExportTag.py └── test_metaData.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirstydevil/mayaMetaData/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirstydevil/mayaMetaData/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirstydevil/mayaMetaData/HEAD/__init__.py -------------------------------------------------------------------------------- /mAsset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirstydevil/mayaMetaData/HEAD/mAsset.py -------------------------------------------------------------------------------- /mCore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirstydevil/mayaMetaData/HEAD/mCore.py -------------------------------------------------------------------------------- /mExportTag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirstydevil/mayaMetaData/HEAD/mExportTag.py -------------------------------------------------------------------------------- /metaData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirstydevil/mayaMetaData/HEAD/metaData.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'dmoulder' 2 | -------------------------------------------------------------------------------- /tests/_testMetaData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirstydevil/mayaMetaData/HEAD/tests/_testMetaData.py -------------------------------------------------------------------------------- /tests/test_mAsset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirstydevil/mayaMetaData/HEAD/tests/test_mAsset.py -------------------------------------------------------------------------------- /tests/test_mExportTag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirstydevil/mayaMetaData/HEAD/tests/test_mExportTag.py -------------------------------------------------------------------------------- /tests/test_metaData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thirstydevil/mayaMetaData/HEAD/tests/test_metaData.py --------------------------------------------------------------------------------