blender-armature 0.9.2

Serialize / deserialize Blender armatures
Documentation
1
2
3
4
5
6
7
8
9
import bpy

addonFilePath = '/tmp/blender-export/blender-armature-to-json.py'

# Install the addon, enable it and save the user's preferences so that it
# is available whenever Blender is opened in the future
bpy.ops.preferences.addon_install(filepath=addonFilePath)
bpy.ops.preferences.addon_enable(module='blender-armature-to-json')
bpy.ops.wm.save_userpref()