bpy_jupyter
bpy_jupyter
An extension that embeds a Jupyter kernel within Blender.
ATTRIBUTE | DESCRIPTION |
---|---|
BL_REGISTER |
All Blender classes that should be registered by
TYPE:
|
register
register() -> None
Registers this addon, so that its functionality is available in Blender.
Notes
Called by Blender when enabling this addon.
Uses bpy_jupyter.registration.register_classes()
to register all classes collected in BL_REGISTER
.
Source code in bpy_jupyter/__init__.py
40 41 42 43 44 45 46 47 48 |
|
unregister
unregister() -> None
Unregisters this addon, so that its functionality is no longer available in Blender.
Notes
Run by Blender when disabling and/or uninstalling the addon.
Uses bpy_jupyter.registration.unregister_classes()
to unregister all Blender classes previously registered by this addon.
Source code in bpy_jupyter/__init__.py
51 52 53 54 55 56 57 58 59 |
|
bpy_jupyter.preferences
Addon preferences, encapsulating the various global modifications that the user may make to how this addon functions.
ATTRIBUTE | DESCRIPTION |
---|---|
BL_REGISTER |
All Blender classes from this module that should be registered.
|
BPYJupyterAddonPrefs
Bases: AddonPreferences
Manages user preferences and settings for this addon.
ATTRIBUTE | DESCRIPTION |
---|---|
bl_idname |
Matches
TYPE:
|
bpy_jupyter.types
Types, enums and constants for use throughout this extension.
ATTRIBUTE | DESCRIPTION |
---|---|
BLClass |
A Blender class in
TYPE:
|
BLContextType |
A possible value for
TYPE:
|
PATH_MANIFEST |
Path to this addon's
TYPE:
|
MANIFEST |
This addon's
TYPE:
|
EXT_NAME |
Name of this extension.
TYPE:
|
EXT_PACKAGE |
Value of
TYPE:
|
PANEL_TYPE_PREFIX |
Extension-specific prefix to use for all values in
|
References
OperatorType
Bases: StrEnum
bl_idname
values for all addon-defined bpy.types.Operator
s.
ATTRIBUTE | DESCRIPTION |
---|---|
StartJupyterKernel |
Starts an embedded Jupyter kernel, using
|
StopJupyterKernel |
Stops the embedded Jupyter kernel, using
|
CopyKernelInfoToClipboard |
Copies some string whose value depends on a running Jupyter kernel, to the system clipboard.
|
PanelType
Bases: StrEnum
bl_idname
values for all addon-defined bpy.types.Panel
s.
ATTRIBUTE | DESCRIPTION |
---|---|
JupyterPanel |
The
|