├── .gitignore ├── LICENSE ├── docs ├── credits.md ├── exposing_the_bindings_in_maya_plugin.md ├── getting_started.md ├── index.md └── writing_the_python_standalone_module.md ├── maya_python_c_ext_hello_world.cpp ├── maya_python_c_ext_hello_world.h ├── maya_python_c_ext_plugin_main.cpp ├── maya_python_c_ext_plugin_main.h ├── maya_python_c_ext_py_hello_world.cpp ├── maya_python_c_ext_py_hello_world.h ├── maya_python_c_ext_py_mod_common.h ├── maya_python_c_ext_py_mod_main.cpp ├── maya_python_c_ext_py_util.cpp ├── maya_python_c_ext_py_util.h ├── maya_python_c_ext_statuses.h ├── maya_python_c_ext_util.cpp ├── maya_python_c_ext_util.h ├── mkdocs.yml ├── py ├── __init__.py └── validate.py ├── readme.md └── tests ├── test_hello_world.py ├── test_module_unload.py ├── test_module_unload_wrapper.py └── test_standalone_module_hello_world.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonictk/maya_python_c_extension/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonictk/maya_python_c_extension/HEAD/LICENSE -------------------------------------------------------------------------------- /docs/credits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonictk/maya_python_c_extension/HEAD/docs/credits.md -------------------------------------------------------------------------------- /docs/exposing_the_bindings_in_maya_plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonictk/maya_python_c_extension/HEAD/docs/exposing_the_bindings_in_maya_plugin.md -------------------------------------------------------------------------------- /docs/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonictk/maya_python_c_extension/HEAD/docs/getting_started.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonictk/maya_python_c_extension/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/writing_the_python_standalone_module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonictk/maya_python_c_extension/HEAD/docs/writing_the_python_standalone_module.md -------------------------------------------------------------------------------- /maya_python_c_ext_hello_world.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonictk/maya_python_c_extension/HEAD/maya_python_c_ext_hello_world.cpp -------------------------------------------------------------------------------- /maya_python_c_ext_hello_world.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonictk/maya_python_c_extension/HEAD/maya_python_c_ext_hello_world.h -------------------------------------------------------------------------------- /maya_python_c_ext_plugin_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonictk/maya_python_c_extension/HEAD/maya_python_c_ext_plugin_main.cpp -------------------------------------------------------------------------------- /maya_python_c_ext_plugin_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonictk/maya_python_c_extension/HEAD/maya_python_c_ext_plugin_main.h -------------------------------------------------------------------------------- /maya_python_c_ext_py_hello_world.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonictk/maya_python_c_extension/HEAD/maya_python_c_ext_py_hello_world.cpp -------------------------------------------------------------------------------- /maya_python_c_ext_py_hello_world.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonictk/maya_python_c_extension/HEAD/maya_python_c_ext_py_hello_world.h -------------------------------------------------------------------------------- /maya_python_c_ext_py_mod_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonictk/maya_python_c_extension/HEAD/maya_python_c_ext_py_mod_common.h -------------------------------------------------------------------------------- /maya_python_c_ext_py_mod_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonictk/maya_python_c_extension/HEAD/maya_python_c_ext_py_mod_main.cpp -------------------------------------------------------------------------------- /maya_python_c_ext_py_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonictk/maya_python_c_extension/HEAD/maya_python_c_ext_py_util.cpp -------------------------------------------------------------------------------- /maya_python_c_ext_py_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonictk/maya_python_c_extension/HEAD/maya_python_c_ext_py_util.h -------------------------------------------------------------------------------- /maya_python_c_ext_statuses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonictk/maya_python_c_extension/HEAD/maya_python_c_ext_statuses.h -------------------------------------------------------------------------------- /maya_python_c_ext_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonictk/maya_python_c_extension/HEAD/maya_python_c_ext_util.cpp -------------------------------------------------------------------------------- /maya_python_c_ext_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonictk/maya_python_c_extension/HEAD/maya_python_c_ext_util.h -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonictk/maya_python_c_extension/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /py/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /py/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonictk/maya_python_c_extension/HEAD/py/validate.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonictk/maya_python_c_extension/HEAD/readme.md -------------------------------------------------------------------------------- /tests/test_hello_world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonictk/maya_python_c_extension/HEAD/tests/test_hello_world.py -------------------------------------------------------------------------------- /tests/test_module_unload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonictk/maya_python_c_extension/HEAD/tests/test_module_unload.py -------------------------------------------------------------------------------- /tests/test_module_unload_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonictk/maya_python_c_extension/HEAD/tests/test_module_unload_wrapper.py -------------------------------------------------------------------------------- /tests/test_standalone_module_hello_world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonictk/maya_python_c_extension/HEAD/tests/test_standalone_module_hello_world.py --------------------------------------------------------------------------------