fake-bpy-module 20231203__py3-none-any.whl → 20231205__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,8 +1,8 @@
1
1
  import sys
2
2
  import typing
3
3
  from . import complete_namespace
4
+ from . import intellisense
4
5
  from . import complete_calltip
5
6
  from . import complete_import
6
- from . import intellisense
7
7
 
8
8
  GenericType = typing.TypeVar("GenericType")
bl_i18n_utils/__init__.py CHANGED
@@ -1,11 +1,11 @@
1
1
  import sys
2
2
  import typing
3
- from . import utils_rtl
4
3
  from . import utils_cli
5
- from . import utils
6
- from . import merge_po
7
- from . import utils_languages_menu
8
4
  from . import settings
5
+ from . import utils_languages_menu
9
6
  from . import bl_extract_messages
7
+ from . import merge_po
8
+ from . import utils_rtl
9
+ from . import utils
10
10
 
11
11
  GenericType = typing.TypeVar("GenericType")
@@ -1,9 +1,9 @@
1
1
  import sys
2
2
  import typing
3
- from . import keymap_from_toolbar
4
- from . import versioning
5
- from . import platform_helpers
6
3
  from . import io
7
4
  from . import keymap_hierarchy
5
+ from . import keymap_from_toolbar
6
+ from . import platform_helpers
7
+ from . import versioning
8
8
 
9
9
  GenericType = typing.TypeVar("GenericType")
bl_operators/__init__.py CHANGED
@@ -1,34 +1,34 @@
1
1
  import sys
2
2
  import typing
3
- from . import console
4
- from . import uvcalc_transform
5
- from . import add_mesh_torus
6
- from . import anim
7
- from . import constraint
8
- from . import image
9
- from . import presets
10
- from . import wm
11
3
  from . import bmesh
12
- from . import userpref
4
+ from . import node
5
+ from . import assets
13
6
  from . import view3d
7
+ from . import uvcalc_transform
8
+ from . import object_align
9
+ from . import console
10
+ from . import userpref
14
11
  from . import uvcalc_lightmap
15
- from . import sequencer
16
- from . import object_randomize_transform
17
- from . import assets
18
12
  from . import clip
19
- from . import spreadsheet
13
+ from . import constraint
20
14
  from . import rigidbody
21
- from . import screen_play_rendered_anim
22
- from . import uvcalc_follow_active
15
+ from . import add_mesh_torus
16
+ from . import vertexpaint_dirt
23
17
  from . import mesh
18
+ from . import object_randomize_transform
19
+ from . import wm
24
20
  from . import geometry_nodes
21
+ from . import screen_play_rendered_anim
22
+ from . import uvcalc_follow_active
23
+ from . import spreadsheet
24
+ from . import image
25
25
  from . import file
26
26
  from . import freestyle
27
- from . import object
28
- from . import object_align
29
27
  from . import object_quick_effects
30
- from . import vertexpaint_dirt
31
- from . import node
28
+ from . import anim
29
+ from . import presets
30
+ from . import object
31
+ from . import sequencer
32
32
 
33
33
  GenericType = typing.TypeVar("GenericType")
34
34
 
bl_ui/__init__.py CHANGED
@@ -2,81 +2,81 @@ import sys
2
2
  import typing
3
3
  import bpy_types
4
4
 
5
- from . import space_text
6
- from . import space_sequencer
7
- from . import space_outliner
8
- from . import space_info
9
- from . import properties_constraint
10
- from . import node_add_menu_compositor
11
- from . import properties_data_curve
12
- from . import space_time
13
- from . import properties_workspace
14
- from . import properties_data_bone
15
- from . import properties_physics_cloth
16
- from . import properties_physics_common
17
- from . import properties_physics_rigidbody
18
- from . import properties_data_pointcloud
19
- from . import properties_object
20
- from . import properties_data_armature
21
- from . import properties_output
5
+ from . import properties_data_empty
6
+ from . import properties_material
7
+ from . import properties_data_speaker
8
+ from . import properties_data_metaball
9
+ from . import properties_data_lattice
22
10
  from . import node_add_menu_geometry
23
- from . import properties_data_camera
24
- from . import properties_mask_common
25
- from . import space_spreadsheet
11
+ from . import properties_scene
12
+ from . import space_text
13
+ from . import space_clip
14
+ from . import properties_physics_field
15
+ from . import space_nla
16
+ from . import node_add_menu_texture
17
+ from . import properties_physics_softbody
26
18
  from . import properties_data_light
19
+ from . import space_graph
20
+ from . import properties_freestyle
21
+ from . import properties_data_camera
22
+ from . import space_console
23
+ from . import properties_grease_pencil_common
27
24
  from . import space_filebrowser
28
- from . import properties_data_volume
29
- from . import properties_data_grease_pencil
30
- from . import generic_ui_list
25
+ from . import properties_collection
31
26
  from . import properties_data_shaderfx
32
- from . import utils
33
- from . import space_clip
34
27
  from . import space_properties
35
- from . import properties_physics_softbody
36
- from . import space_statusbar
37
- from . import node_add_menu
38
- from . import properties_data_metaball
39
- from . import properties_data_empty
40
- from . import properties_scene
41
- from . import properties_data_mesh
42
- from . import space_view3d_toolbar
43
- from . import properties_data_lightprobe
44
- from . import space_image
45
- from . import properties_grease_pencil_common
28
+ from . import space_userpref
46
29
  from . import properties_paint_common
30
+ from . import space_view3d
31
+ from . import properties_animviz
47
32
  from . import properties_physics_dynamicpaint
48
- from . import properties_physics_field
49
- from . import properties_material_gpencil
50
- from . import properties_data_curves
51
33
  from . import properties_physics_rigidbody_constraint
52
- from . import asset_shelf
53
- from . import space_console
54
- from . import space_nla
55
- from . import properties_data_modifier
56
- from . import properties_collection
57
- from . import space_dopesheet
34
+ from . import utils
35
+ from . import properties_render
36
+ from . import properties_physics_cloth
37
+ from . import space_node
38
+ from . import properties_data_curves
58
39
  from . import properties_particle
59
- from . import properties_data_gpencil
60
- from . import properties_animviz
61
- from . import space_view3d
40
+ from . import node_add_menu_compositor
41
+ from . import properties_data_modifier
42
+ from . import properties_world
43
+ from . import properties_texture
62
44
  from . import space_toolsystem_toolbar
63
- from . import properties_data_speaker
45
+ from . import properties_data_grease_pencil
64
46
  from . import space_toolsystem_common
65
- from . import properties_render
66
- from . import space_graph
67
47
  from . import properties_physics_fluid
68
- from . import properties_world
69
- from . import space_userpref
70
- from . import properties_data_lattice
71
- from . import properties_view_layer
72
- from . import node_add_menu_texture
73
- from . import properties_freestyle
74
- from . import properties_material
75
- from . import space_node
48
+ from . import space_image
49
+ from . import space_sequencer
50
+ from . import properties_data_armature
51
+ from . import properties_data_bone
52
+ from . import properties_data_lightprobe
53
+ from . import properties_mask_common
54
+ from . import properties_data_mesh
55
+ from . import space_info
76
56
  from . import properties_physics_geometry_nodes
57
+ from . import properties_physics_common
58
+ from . import properties_data_volume
77
59
  from . import space_topbar
78
- from . import properties_texture
60
+ from . import properties_view_layer
61
+ from . import properties_material_gpencil
62
+ from . import properties_data_pointcloud
63
+ from . import space_statusbar
64
+ from . import properties_constraint
65
+ from . import space_outliner
66
+ from . import properties_physics_rigidbody
67
+ from . import generic_ui_list
68
+ from . import node_add_menu
69
+ from . import space_time
70
+ from . import properties_data_gpencil
71
+ from . import asset_shelf
72
+ from . import properties_workspace
73
+ from . import space_view3d_toolbar
74
+ from . import properties_data_curve
75
+ from . import space_dopesheet
76
+ from . import properties_output
79
77
  from . import node_add_menu_shader
78
+ from . import properties_object
79
+ from . import space_spreadsheet
80
80
 
81
81
  GenericType = typing.TypeVar("GenericType")
82
82
 
bl_ui_utils/__init__.py CHANGED
@@ -1,6 +1,6 @@
1
1
  import sys
2
2
  import typing
3
- from . import layout
4
3
  from . import bug_report_url
4
+ from . import layout
5
5
 
6
6
  GenericType = typing.TypeVar("GenericType")
bpy/__init__.py CHANGED
@@ -3,12 +3,12 @@ import typing
3
3
  import bpy.types
4
4
 
5
5
  from . import types
6
- from . import msgbus
7
6
  from . import ops
7
+ from . import app
8
+ from . import props
8
9
  from . import utils
10
+ from . import msgbus
9
11
  from . import path
10
- from . import props
11
- from . import app
12
12
 
13
13
  GenericType = typing.TypeVar("GenericType")
14
14
  context: 'bpy.types.Context' = None
bpy/app/__init__.py CHANGED
@@ -2,8 +2,8 @@ import sys
2
2
  import typing
3
3
  from . import translations
4
4
  from . import icons
5
- from . import timers
6
5
  from . import handlers
6
+ from . import timers
7
7
 
8
8
  GenericType = typing.TypeVar("GenericType")
9
9
 
bpy/ops/__init__.py CHANGED
@@ -1,81 +1,81 @@
1
1
  import sys
2
2
  import typing
3
- from . import world
4
- from . import text
5
- from . import collection
3
+ from . import image
4
+ from . import cachefile
5
+ from . import dpaint
6
+ from . import render
7
+ from . import rigidbody
8
+ from . import curve
6
9
  from . import sound
7
- from . import scene
8
- from . import cloth
9
- from . import fluid
10
- from . import texture
11
- from . import export_scene
12
- from . import uilist
13
- from . import preferences
10
+ from . import mesh
11
+ from . import wm
12
+ from . import ptcache
13
+ from . import view2d
14
+ from . import gpencil
14
15
  from . import lattice
15
- from . import constraint
16
- from . import mball
17
- from . import import_scene
18
- from . import palette
19
- from . import render
16
+ from . import text
20
17
  from . import brush
21
- from . import marker
22
- from . import view2d
23
- from . import font
24
- from . import boid
25
- from . import spreadsheet
26
- from . import nla
27
- from . import import_anim
28
- from . import cachefile
29
- from . import curve
30
- from . import action
18
+ from . import buttons
31
19
  from . import camera
32
- from . import uv
33
- from . import clip
34
- from . import rigidbody
35
- from . import outliner
36
- from . import import_mesh
37
- from . import ptcache
20
+ from . import export_scene
21
+ from . import gizmogroup
22
+ from . import console
23
+ from . import sculpt_curves
24
+ from . import constraint
25
+ from . import grease_pencil
26
+ from . import preferences
27
+ from . import asset
38
28
  from . import export_anim
39
- from . import armature
40
- from . import sequencer
41
- from . import view3d
29
+ from . import transform
30
+ from . import nla
31
+ from . import object
32
+ from . import import_curve
33
+ from . import fluid
42
34
  from . import graph
43
- from . import buttons
35
+ from . import boid
36
+ from . import clip
37
+ from . import import_scene
44
38
  from . import material
45
- from . import geometry
46
- from . import cycles
47
- from . import dpaint
48
- from . import pose
49
- from . import mask
50
- from . import import_curve
51
- from . import paintcurve
52
- from . import screen
53
- from . import wm
54
- from . import mesh
39
+ from . import sequencer
55
40
  from . import export_mesh
56
- from . import console
57
- from . import paint
41
+ from . import workspace
42
+ from . import paintcurve
43
+ from . import outliner
44
+ from . import node
45
+ from . import uilist
46
+ from . import spreadsheet
47
+ from . import import_mesh
58
48
  from . import particle
59
- from . import poselib
60
- from . import image
61
- from . import transform
49
+ from . import action
50
+ from . import text_editor
51
+ from . import geometry
52
+ from . import screen
53
+ from . import info
54
+ from . import mask
55
+ from . import armature
62
56
  from . import script
63
- from . import surface
64
- from . import asset
65
- from . import anim
66
57
  from . import sculpt
67
- from . import gpencil
68
- from . import text_editor
69
- from . import grease_pencil
70
- from . import curves
71
- from . import sculpt_curves
72
- from . import object
73
- from . import ed
58
+ from . import poselib
59
+ from . import paint
60
+ from . import anim
61
+ from . import cloth
62
+ from . import view3d
63
+ from . import surface
64
+ from . import pose
65
+ from . import world
66
+ from . import cycles
74
67
  from . import file
75
- from . import workspace
68
+ from . import import_anim
69
+ from . import ed
70
+ from . import scene
71
+ from . import texture
72
+ from . import uv
73
+ from . import font
74
+ from . import marker
75
+ from . import curves
76
+ from . import mball
77
+ from . import palette
78
+ from . import collection
76
79
  from . import ui
77
- from . import node
78
- from . import gizmogroup
79
- from . import info
80
80
 
81
81
  GenericType = typing.TypeVar("GenericType")
bpy/ops/wm.py CHANGED
@@ -2289,6 +2289,7 @@ def obj_import(
2289
2289
  Any]] = False,
2290
2290
  validate_meshes: typing.Optional[typing.Union[bool, typing.
2291
2291
  Any]] = False,
2292
+ collection_separator: typing.Union[str, typing.Any] = "",
2292
2293
  filter_glob: typing.Union[str, typing.Any] = "*.obj;*.mtl"):
2293
2294
  ''' Load a Wavefront OBJ scene
2294
2295
 
@@ -2359,6 +2360,8 @@ def obj_import(
2359
2360
  :type import_vertex_groups: typing.Optional[typing.Union[bool, typing.Any]]
2360
2361
  :param validate_meshes: Validate Meshes, Check imported mesh objects for invalid data (slow)
2361
2362
  :type validate_meshes: typing.Optional[typing.Union[bool, typing.Any]]
2363
+ :param collection_separator: Path Separator, Character used to separate objects name into hierarchical structure
2364
+ :type collection_separator: typing.Union[str, typing.Any]
2362
2365
  :param filter_glob: Extension Filter
2363
2366
  :type filter_glob: typing.Union[str, typing.Any]
2364
2367
  '''
bpy/types.py CHANGED
@@ -2,212 +2,97 @@ import sys
2
2
  import typing
3
3
  import mathutils
4
4
  import bpy
5
- import bl_ui.space_text
6
- import bl_ui.space_sequencer
7
- import bl_ui.space_outliner
8
- import bl_ui.space_info
9
- import bl_operators.anim
10
- import bl_ui.properties_constraint
11
- import bl_ui.node_add_menu_compositor
12
- import bl_ui.properties_data_curve
13
- import bl_ui.space_time
14
- import bl_operators.constraint
15
- import bl_operators.presets
16
- import bl_ui.properties_workspace
17
- import bl_ui.properties_data_bone
18
- import bl_ui.properties_physics_cloth
19
- import bl_ui.properties_physics_common
20
- import bl_ui.properties_physics_rigidbody
21
- import bl_ui.properties_data_pointcloud
22
- import bl_ui.properties_object
23
- import bl_ui.properties_data_armature
24
- import bl_operators.wm
25
- import bl_ui.properties_output
5
+ import bl_ui.properties_data_empty
6
+ import bl_ui.properties_material
7
+ import bl_ui.properties_data_speaker
8
+ import bl_operators.node
9
+ import bl_operators.assets
10
+ import bl_ui.properties_data_metaball
11
+ import bl_ui.properties_data_lattice
26
12
  import bl_ui.node_add_menu_geometry
27
- import bl_ui.properties_data_camera
28
- import bl_ui.properties_mask_common
29
- import bl_ui.space_spreadsheet
13
+ import bl_ui.properties_scene
14
+ import bl_operators.view3d
15
+ import bl_ui.space_text
16
+ import bl_ui.space_clip
17
+ import bl_ui.properties_physics_field
30
18
  import bl_ui
19
+ import bl_ui.space_nla
20
+ import bl_ui.node_add_menu_texture
21
+ import bl_ui.properties_physics_softbody
31
22
  import bl_ui.properties_data_light
23
+ import bl_ui.space_graph
24
+ import bl_ui.properties_freestyle
25
+ import bl_ui.properties_data_camera
26
+ import bl_ui.space_console
27
+ import bl_ui.properties_grease_pencil_common
32
28
  import bl_operators.userpref
33
- import bl_operators.view3d
34
29
  import bl_ui.space_filebrowser
35
- import bl_ui.properties_data_volume
36
- import bl_ui.properties_data_grease_pencil
37
- import bl_ui.generic_ui_list
30
+ import bl_ui.properties_collection
38
31
  import bl_ui.properties_data_shaderfx
39
- import bl_ui.space_clip
40
- import bl_ui.space_properties
41
- import bl_ui.properties_physics_softbody
42
- import bl_ui.space_statusbar
43
- import bl_ui.node_add_menu
44
- import bl_operators.assets
45
- import bl_ui.properties_data_metaball
46
32
  import bl_operators.clip
47
- import bl_ui.properties_data_empty
48
- import bl_ui.properties_scene
49
- import bl_ui.properties_data_mesh
50
- import bl_ui.space_view3d_toolbar
51
- import bl_ui.properties_data_lightprobe
52
- import bl_ui.space_image
53
- import bl_operators.spreadsheet
54
- import bl_ui.properties_grease_pencil_common
33
+ import bl_ui.space_properties
34
+ import bl_ui.space_userpref
55
35
  import bl_ui.properties_paint_common
36
+ import bl_ui.space_view3d
37
+ import bl_operators.constraint
56
38
  import bl_ui.properties_physics_dynamicpaint
57
- import bl_ui.properties_physics_field
58
- import bl_ui.properties_material_gpencil
59
- import bl_ui.properties_data_curves
60
39
  import bl_ui.properties_physics_rigidbody_constraint
61
- import bl_ui.asset_shelf
62
- import bl_ui.space_console
63
- import bl_ui.space_nla
64
- import bl_ui.properties_data_modifier
65
- import bl_ui.properties_collection
66
- import bl_ui.space_dopesheet
40
+ import bl_ui.properties_render
41
+ import bl_ui.properties_physics_cloth
42
+ import bl_ui.space_node
43
+ import bl_ui.properties_data_curves
67
44
  import bl_ui.properties_particle
68
- import bl_ui.properties_data_gpencil
69
- import bl_ui.space_view3d
70
- import bl_operators.file
45
+ import bl_ui.node_add_menu_compositor
46
+ import bl_ui.properties_data_modifier
47
+ import bl_ui.properties_world
48
+ import bl_ui.properties_texture
71
49
  import bl_ui.space_toolsystem_toolbar
72
- import bl_ui.properties_data_speaker
50
+ import bl_operators.wm
51
+ import bl_ui.properties_data_grease_pencil
73
52
  import bl_ui.space_toolsystem_common
74
- import bl_ui.properties_render
75
- import bl_ui.space_graph
76
53
  import bl_ui.properties_physics_fluid
77
- import bl_ui.properties_world
78
- import bl_ui.space_userpref
79
- import bl_ui.properties_data_lattice
80
- import bl_operators.freestyle
81
- import bl_ui.properties_view_layer
82
- import bl_operators.object
83
- import bl_ui.node_add_menu_texture
84
- import bl_ui.properties_freestyle
85
- import bl_ui.properties_material
86
- import bl_ui.space_node
54
+ import bl_ui.space_image
55
+ import bl_ui.space_sequencer
56
+ import bl_ui.properties_data_armature
57
+ import bl_ui.properties_data_bone
58
+ import bl_ui.properties_data_lightprobe
59
+ import bl_ui.properties_mask_common
60
+ import bl_ui.properties_data_mesh
61
+ import bl_ui.space_info
87
62
  import bl_ui.properties_physics_geometry_nodes
63
+ import bl_ui.properties_physics_common
64
+ import bl_ui.properties_data_volume
65
+ import bl_operators.spreadsheet
88
66
  import bl_ui.space_topbar
89
- import bl_ui.properties_texture
90
- import bl_operators.node
67
+ import bl_ui.properties_view_layer
68
+ import bl_ui.properties_material_gpencil
69
+ import bl_operators.file
70
+ import bl_operators.freestyle
71
+ import bl_ui.properties_data_pointcloud
72
+ import bl_operators.anim
73
+ import bl_ui.space_statusbar
74
+ import bl_operators.presets
75
+ import bl_ui.properties_constraint
76
+ import bl_operators.object
77
+ import bl_ui.space_outliner
78
+ import bl_ui.properties_physics_rigidbody
79
+ import bl_ui.generic_ui_list
80
+ import bl_ui.node_add_menu
81
+ import bl_ui.space_time
82
+ import bl_ui.properties_data_gpencil
83
+ import bl_ui.asset_shelf
84
+ import bl_ui.properties_workspace
85
+ import bl_ui.space_view3d_toolbar
86
+ import bl_ui.properties_data_curve
87
+ import bl_ui.space_dopesheet
88
+ import bl_ui.properties_output
91
89
  import bl_ui.node_add_menu_shader
90
+ import bl_ui.properties_object
91
+ import bl_ui.space_spreadsheet
92
92
 
93
93
  GenericType = typing.TypeVar("GenericType")
94
94
 
95
95
 
96
- class bpy_prop_collection(typing.Generic[GenericType]):
97
- ''' built-in class used for all collections.
98
- '''
99
-
100
- def find(self, key: typing.Optional[str]) -> int:
101
- ''' Returns the index of a key in a collection or -1 when not found (matches Python's string find function of the same name).
102
-
103
- :param key: The identifier for the collection member.
104
- :type key: typing.Optional[str]
105
- :rtype: int
106
- :return: index of the key.
107
- '''
108
- pass
109
-
110
- def foreach_get(self, attr, seq):
111
- ''' This is a function to give fast access to attributes within a collection. Only works for 'basic type' properties (bool, int and float)! Multi-dimensional arrays (like array of vectors) will be flattened into seq.
112
-
113
- '''
114
- pass
115
-
116
- def foreach_set(self, attr, seq):
117
- ''' This is a function to give fast access to attributes within a collection. Only works for 'basic type' properties (bool, int and float)! seq must be uni-dimensional, multi-dimensional arrays (like array of vectors) will be re-created from it.
118
-
119
- '''
120
- pass
121
-
122
- def get(self,
123
- key: typing.Optional[str],
124
- default: typing.Optional[typing.Any] = None):
125
- ''' Returns the value of the item assigned to key or default when not found (matches Python's dictionary function of the same name).
126
-
127
- :param key: The identifier for the collection member.
128
- :type key: typing.Optional[str]
129
- :param default: Optional argument for the value to return if *key* is not found.
130
- :type default: typing.Optional[typing.Any]
131
- '''
132
- pass
133
-
134
- def items(self) -> typing.List:
135
- ''' Return the identifiers of collection members (matching Python's dict.items() functionality).
136
-
137
- :rtype: typing.List
138
- :return: (key, value) pairs for each member of this collection.
139
- '''
140
- pass
141
-
142
- def keys(self) -> typing.List[str]:
143
- ''' Return the identifiers of collection members (matching Python's dict.keys() functionality).
144
-
145
- :rtype: typing.List[str]
146
- :return: the identifiers for each member of this collection.
147
- '''
148
- pass
149
-
150
- def values(self) -> typing.List:
151
- ''' Return the values of collection (matching Python's dict.values() functionality).
152
-
153
- :rtype: typing.List
154
- :return: the members of this collection.
155
- '''
156
- pass
157
-
158
- def __getitem__(self, key: typing.Optional[typing.Union[int, str]]
159
- ) -> 'GenericType':
160
- '''
161
-
162
- :param key:
163
- :type key: typing.Optional[typing.Union[int, str]]
164
- :rtype: 'GenericType'
165
- '''
166
- pass
167
-
168
- def __setitem__(self, key: typing.Optional[typing.Union[int, str]],
169
- value: 'GenericType'):
170
- '''
171
-
172
- :param key:
173
- :type key: typing.Optional[typing.Union[int, str]]
174
- :param value:
175
- :type value: 'GenericType'
176
- '''
177
- pass
178
-
179
- def __delitem__(self, key: typing.Optional[typing.Union[int, str]]
180
- ) -> 'GenericType':
181
- '''
182
-
183
- :param key:
184
- :type key: typing.Optional[typing.Union[int, str]]
185
- :rtype: 'GenericType'
186
- '''
187
- pass
188
-
189
- def __iter__(self) -> typing.Iterator['GenericType']:
190
- '''
191
-
192
- :rtype: typing.Iterator['GenericType']
193
- '''
194
- pass
195
-
196
- def __next__(self) -> 'GenericType':
197
- '''
198
-
199
- :rtype: 'GenericType'
200
- '''
201
- pass
202
-
203
- def __len__(self) -> int:
204
- '''
205
-
206
- :rtype: int
207
- '''
208
- pass
209
-
210
-
211
96
  class bpy_struct:
212
97
  ''' built-in base class for all classes in bpy.types.
213
98
  '''
@@ -481,6 +366,121 @@ class bpy_struct:
481
366
  pass
482
367
 
483
368
 
369
+ class bpy_prop_collection(typing.Generic[GenericType]):
370
+ ''' built-in class used for all collections.
371
+ '''
372
+
373
+ def find(self, key: typing.Optional[str]) -> int:
374
+ ''' Returns the index of a key in a collection or -1 when not found (matches Python's string find function of the same name).
375
+
376
+ :param key: The identifier for the collection member.
377
+ :type key: typing.Optional[str]
378
+ :rtype: int
379
+ :return: index of the key.
380
+ '''
381
+ pass
382
+
383
+ def foreach_get(self, attr, seq):
384
+ ''' This is a function to give fast access to attributes within a collection. Only works for 'basic type' properties (bool, int and float)! Multi-dimensional arrays (like array of vectors) will be flattened into seq.
385
+
386
+ '''
387
+ pass
388
+
389
+ def foreach_set(self, attr, seq):
390
+ ''' This is a function to give fast access to attributes within a collection. Only works for 'basic type' properties (bool, int and float)! seq must be uni-dimensional, multi-dimensional arrays (like array of vectors) will be re-created from it.
391
+
392
+ '''
393
+ pass
394
+
395
+ def get(self,
396
+ key: typing.Optional[str],
397
+ default: typing.Optional[typing.Any] = None):
398
+ ''' Returns the value of the item assigned to key or default when not found (matches Python's dictionary function of the same name).
399
+
400
+ :param key: The identifier for the collection member.
401
+ :type key: typing.Optional[str]
402
+ :param default: Optional argument for the value to return if *key* is not found.
403
+ :type default: typing.Optional[typing.Any]
404
+ '''
405
+ pass
406
+
407
+ def items(self) -> typing.List:
408
+ ''' Return the identifiers of collection members (matching Python's dict.items() functionality).
409
+
410
+ :rtype: typing.List
411
+ :return: (key, value) pairs for each member of this collection.
412
+ '''
413
+ pass
414
+
415
+ def keys(self) -> typing.List[str]:
416
+ ''' Return the identifiers of collection members (matching Python's dict.keys() functionality).
417
+
418
+ :rtype: typing.List[str]
419
+ :return: the identifiers for each member of this collection.
420
+ '''
421
+ pass
422
+
423
+ def values(self) -> typing.List:
424
+ ''' Return the values of collection (matching Python's dict.values() functionality).
425
+
426
+ :rtype: typing.List
427
+ :return: the members of this collection.
428
+ '''
429
+ pass
430
+
431
+ def __getitem__(self, key: typing.Optional[typing.Union[int, str]]
432
+ ) -> 'GenericType':
433
+ '''
434
+
435
+ :param key:
436
+ :type key: typing.Optional[typing.Union[int, str]]
437
+ :rtype: 'GenericType'
438
+ '''
439
+ pass
440
+
441
+ def __setitem__(self, key: typing.Optional[typing.Union[int, str]],
442
+ value: 'GenericType'):
443
+ '''
444
+
445
+ :param key:
446
+ :type key: typing.Optional[typing.Union[int, str]]
447
+ :param value:
448
+ :type value: 'GenericType'
449
+ '''
450
+ pass
451
+
452
+ def __delitem__(self, key: typing.Optional[typing.Union[int, str]]
453
+ ) -> 'GenericType':
454
+ '''
455
+
456
+ :param key:
457
+ :type key: typing.Optional[typing.Union[int, str]]
458
+ :rtype: 'GenericType'
459
+ '''
460
+ pass
461
+
462
+ def __iter__(self) -> typing.Iterator['GenericType']:
463
+ '''
464
+
465
+ :rtype: typing.Iterator['GenericType']
466
+ '''
467
+ pass
468
+
469
+ def __next__(self) -> 'GenericType':
470
+ '''
471
+
472
+ :rtype: 'GenericType'
473
+ '''
474
+ pass
475
+
476
+ def __len__(self) -> int:
477
+ '''
478
+
479
+ :rtype: int
480
+ '''
481
+ pass
482
+
483
+
484
484
  class bpy_prop_array(typing.Generic[GenericType]):
485
485
  def foreach_get(self, attr, seq):
486
486
  '''
@@ -105116,8 +105116,7 @@ class CompositorNodeSetAlpha(CompositorNode, NodeInternal, Node, bpy_struct):
105116
105116
  pass
105117
105117
 
105118
105118
 
105119
- class CompositorNodeSplitViewer(CompositorNode, NodeInternal, Node,
105120
- bpy_struct):
105119
+ class CompositorNodeSplit(CompositorNode, NodeInternal, Node, bpy_struct):
105121
105120
  axis: typing.Union[str, int] = None
105122
105121
  '''
105123
105122
 
bpy/utils/__init__.py CHANGED
@@ -2,8 +2,8 @@ import sys
2
2
  import typing
3
3
  import bpy.types
4
4
 
5
- from . import units
6
5
  from . import previews
6
+ from . import units
7
7
 
8
8
  GenericType = typing.TypeVar("GenericType")
9
9
 
bpy_extras/__init__.py CHANGED
@@ -11,8 +11,8 @@ from . import mesh_utils
11
11
  from . import io_utils
12
12
  from . import anim_utils
13
13
  from . import bmesh_utils
14
- from . import wm_utils
15
14
  from . import extensions
15
+ from . import wm_utils
16
16
  from . import node_shader_utils
17
17
 
18
18
  GenericType = typing.TypeVar("GenericType")
bpy_extras/anim_utils.py CHANGED
@@ -97,12 +97,12 @@ def bake_action_objects(object_action_pairs, *, frames: int,
97
97
 
98
98
  def bake_action_objects_iter(
99
99
  object_action_pairs: typing.
100
- Union['bpy.types.Action', 'bpy.types.Object', 'bpy.types.Sequence'],
100
+ Union['bpy.types.Object', 'bpy.types.Action', 'bpy.types.Sequence'],
101
101
  bake_o):
102
102
  ''' An coroutine that bakes actions for multiple objects.
103
103
 
104
104
  :param object_action_pairs: Sequence of object action tuples, action is the destination for the baked data. When None a new action will be created.
105
- :type object_action_pairs: typing.Union['bpy.types.Action', 'bpy.types.Object', 'bpy.types.Sequence']
105
+ :type object_action_pairs: typing.Union['bpy.types.Object', 'bpy.types.Action', 'bpy.types.Sequence']
106
106
  '''
107
107
 
108
108
  pass
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fake-bpy-module
3
- Version: 20231203
3
+ Version: 20231205
4
4
  Summary: Collection of the fake Blender Python API module for the code completion.
5
5
  Author: nutti
6
6
  Author-email: nutti.metro@gmail.com
@@ -13,13 +13,13 @@ bl_app_template_utils/__init__.py,sha256=8b1qin_xdAWCAcKumw0RyJhFZ6Lxs9Obbn-uhsE
13
13
  bl_app_template_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
14
  bl_console_utils/__init__.py,sha256=qOGRa_N1-VEAf9cr60mvvxQMYSKNNSzuSQ0_TuSEq1I,97
15
15
  bl_console_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
- bl_console_utils/autocomplete/__init__.py,sha256=WJsgtOGGz3plYeh9b8fEpmGsqDsvnFxiuHAyQUIZivY,191
16
+ bl_console_utils/autocomplete/__init__.py,sha256=u42XMuxeB9SmwNak1aZDHhxMEIR539Q6GyhR7HisRi0,191
17
17
  bl_console_utils/autocomplete/complete_calltip.py,sha256=MPKfExCeGGQ8_4N_Tlc0jmW-fds90pQev9SL117BsUM,377
18
18
  bl_console_utils/autocomplete/complete_import.py,sha256=siEo09By6i0XXG93NuA8a-BjPDm86vKAfZWNhv_l8CE,227
19
19
  bl_console_utils/autocomplete/complete_namespace.py,sha256=pgGkpgraV9HpeoCYrvkyfZPMy-gjZ7Ycs2NQpEiQJwA,389
20
20
  bl_console_utils/autocomplete/intellisense.py,sha256=xDJSSliCSB7zLfprMv3fhJ_8v9nDIbNjh4iWsPBSXGc,224
21
21
  bl_console_utils/autocomplete/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
- bl_i18n_utils/__init__.py,sha256=MWayYf1RiaVntO5AeIRwugWG8_VNnWdKYWFcRRURHKI,253
22
+ bl_i18n_utils/__init__.py,sha256=Zf-v6s6BmS2qcMgYUXiSeSl42kW9km9thQYvsaq02Rc,253
23
23
  bl_i18n_utils/bl_extract_messages.py,sha256=CGDo_zEECIRqL9T2KH2uEmyQwWqvrhMaufHB14eLDDI,1291
24
24
  bl_i18n_utils/merge_po.py,sha256=OhoBaW8ucVvvFHfvVDdnb9lu-tcSqunHBLNNjqWeVVM,112
25
25
  bl_i18n_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -28,7 +28,7 @@ bl_i18n_utils/utils.py,sha256=aryTDpTgcQzkslzcFjd7EQ2vQdZ0Zlk9Xoaq2hml4hM,4191
28
28
  bl_i18n_utils/utils_cli.py,sha256=QyGeAstQg58HmOKJOtTxDF_ivivu_qTj2Ey8hg7VbPQ,426
29
29
  bl_i18n_utils/utils_languages_menu.py,sha256=vYKm7amC2CLWXpESzyfocyMBViVGgaSx4Gq0R4pTZSs,136
30
30
  bl_i18n_utils/utils_rtl.py,sha256=cK223AOBjHT-a48D0bG4CXB-tK8_qk_iLULn8HHDEV0,188
31
- bl_keymap_utils/__init__.py,sha256=twTnMfFwdtSAaudEiFbCMnqSGcksAK8jede45ollgpg,208
31
+ bl_keymap_utils/__init__.py,sha256=y_lKFreojfR2LuF1_vaEtqharHWMX0qqxtN00LbzgHw,208
32
32
  bl_keymap_utils/io.py,sha256=zm4iPaSKw6oJHcuKExt3N8CQYV6863JmJWmKw1vUyLk,693
33
33
  bl_keymap_utils/keymap_from_toolbar.py,sha256=wAg-NRqvXTB8kAe04RSWX2HA2IIdLcvX_3K3QwoH9aE,165
34
34
  bl_keymap_utils/keymap_hierarchy.py,sha256=1aHezC2A-HiVlALoJhZToL-Ptr7Su_kTzd1EmZ7TfkI,116
@@ -37,7 +37,7 @@ bl_keymap_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
37
37
  bl_keymap_utils/versioning.py,sha256=i_F1unt1E48PkK8cHkyuyXyOVGYjtPSSuB0H7IeNm5s,157
38
38
  bl_math/__init__.py,sha256=HuKBzISCORSFYStQOmmSfZkoEp7P1yYqulWMh4DlLFo,1600
39
39
  bl_math/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
40
- bl_operators/__init__.py,sha256=1KBhYeH76b2F0TRGulCGCFNUWnQKPlfy2_RnSLncGJo,897
40
+ bl_operators/__init__.py,sha256=7BIsOtT6Wvgf1sEJko9UZMdzqIo9HHR3TUdyuLVL5bA,897
41
41
  bl_operators/add_mesh_torus.py,sha256=ESE7JqYi0GJiPj89LmgjiAiSiJV943agNEB8Xewj5rI,2820
42
42
  bl_operators/anim.py,sha256=Ku3AxXxJg-4vjomBVfHKqQZ8myzagRH0DQXeXNK32KM,15398
43
43
  bl_operators/assets.py,sha256=6DaFpg0vV4LK97GqGfqnbgI54rFgw8PzwglU3yZ2kzY,7069
@@ -79,7 +79,7 @@ bl_rna_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
79
79
  bl_text_utils/__init__.py,sha256=mA4rhlhHGbhXjawE0_uzcLQZhw4Rj4xm5DsFzDaoR0I,100
80
80
  bl_text_utils/external_editor.py,sha256=uZ85B8RMbHYByZgDttYvq1HvYw96djWRTBOOBdYz3a4,150
81
81
  bl_text_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
82
- bl_ui/__init__.py,sha256=3ayAYGD_UJDPD_2bsKBT6XPGVVcv5OZaY32R3EU0l8s,10429
82
+ bl_ui/__init__.py,sha256=_XzPCJSOc-g-EruZWvN2cq2rLRJK4h8FUKIwXRLFT9k,10429
83
83
  bl_ui/asset_shelf.py,sha256=vsUJdmc6qMwSUw6LG0DdvfBnGU_9XzGf8aM6JSgxTSU,2443
84
84
  bl_ui/generic_ui_list.py,sha256=qVS6kLVZIfhxSIlkEvdD6VtJ_p32nD_MUzeK2Jpf2KU,7770
85
85
  bl_ui/node_add_menu.py,sha256=BaGnC0A1Dgtch576n-2KloP1kd22lYY2lnd2c9vP4PQ,3123
@@ -156,7 +156,7 @@ bl_ui/space_userpref.py,sha256=ykwSG8SmzmeeFJPi7HciqhARflIJYVd7hrhZNPzfRUY,22000
156
156
  bl_ui/space_view3d.py,sha256=s2lhe0nBI927tcqSlnveeyNEBfCCu26T3kxhn0uo8v8,647269
157
157
  bl_ui/space_view3d_toolbar.py,sha256=-4AzEHAdL9xj-P_AAaGMcpwEl7qb4ovrnpJkNJKMhFc,243469
158
158
  bl_ui/utils.py,sha256=K5yqT-IaUcR3sNZqrpwJUphTNa1MdLiaLR1uwirv2q0,618
159
- bl_ui_utils/__init__.py,sha256=NueTVhcSnz7Cgzo_iG7uvCHf8HbOarIj8-uz79zg-LA,120
159
+ bl_ui_utils/__init__.py,sha256=09VcD0Qr5ySzpITMc17GRGqGUrN-qjyG6qBeq0jgIFk,120
160
160
  bl_ui_utils/bug_report_url.py,sha256=M51wZHtWA958vDu6plUC7IUcSWPVAZbp802cD40Pe7s,142
161
161
  bl_ui_utils/layout.py,sha256=b7jcmjKLkH_2T8APBi-x_Mq87uYb3SHcSet6vVQ8UQQ,142
162
162
  bl_ui_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -170,19 +170,19 @@ bmesh/ops.py,sha256=C852Zt3wgC-2F9ucuEIOlpq7YLro8lZMPZsg8SKQTjo,77359
170
170
  bmesh/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
171
171
  bmesh/types.py,sha256=oYEC1mdFyB4xuouSZ81BykLlOcfQf3TIzwi3KEM2_Kg,37528
172
172
  bmesh/utils.py,sha256=xljVJDVm-7bKplQoobdKQOeWHwINjMMe-Azb274XOz4,6556
173
- bpy/__init__.py,sha256=V2S_cq95bgAEjmFCkGMcQTj20Tg25r4TzlVQj1-IeCE,338
173
+ bpy/__init__.py,sha256=v-Mt-IHTcT1Ws3-JjCAf6zAPap0Q2Mjs8NsxcMaT5x4,338
174
174
  bpy/msgbus.py,sha256=iU7oyEPGqk30JvYfwUTx89kfSPmxLXmzo92Xgc9mmhg,1669
175
175
  bpy/path.py,sha256=y_nSzvITDZDD5L45io2KmiOJDOWIRm6LPMZT14surqg,6327
176
176
  bpy/props.py,sha256=FhZ7Ne0nnqoYjeNENCm2c99RpOvPDmaBsXEA4HReUaQ,29328
177
177
  bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
178
- bpy/types.py,sha256=iZngLR-cHunXDnuBsw76JJtuRMtMkqVk4fTZdYLuOe8,3578989
179
- bpy/app/__init__.py,sha256=16MTRcyFS5-sUTzYxoPBcn-o87iQww6avpTr0DL5af4,9210
178
+ bpy/types.py,sha256=b2ab8a4vz5oaPmXpDBptudaE42ZKqX3ow0J9yKS14Qw,3578951
179
+ bpy/app/__init__.py,sha256=yNrEMGmq2Z0zZzbVGaP2glIMFSRbYaq840Ib1STucHI,9210
180
180
  bpy/app/handlers.py,sha256=7DaM8QZ79D5nHstZ4ZDM6yBZCde38yDUQ9BbNy6UK4E,5838
181
181
  bpy/app/icons.py,sha256=L1J2n6QE3FEDrzSvf8jdmHr2SkMoY-ejZq1sS1o0UgY,1157
182
182
  bpy/app/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
183
183
  bpy/app/timers.py,sha256=XaSmMpe33D0yHdkOrYBGOJb6KA7fM2ciQiWCrAQhNUg,1476
184
184
  bpy/app/translations.py,sha256=WPGkHLCBiSBZnxrl2nFNUjX9llLi-CKZfBqoCvw0yq4,4499
185
- bpy/ops/__init__.py,sha256=TKkLhN5ReSAGEFlKYUs7k-YJW5XM_CBm4L9yG8QC32U,1751
185
+ bpy/ops/__init__.py,sha256=03TVSYnSnJu1xtCaXV6A2jn0fYcTchV8qI1F4yB8As0,1751
186
186
  bpy/ops/action.py,sha256=DmRPlY_eVfSEsmaSzvL1oQe5pDi8Thtcc5pOke1_Btc,29695
187
187
  bpy/ops/anim.py,sha256=woPbB120Wo54gaVjzAnnHbnZAv7A1x3YWrZt2SC9e0w,38872
188
188
  bpy/ops/armature.py,sha256=-4Guf6-QVitqY0RvcbjfAYQqJx1PrWvjGxpdE7PVAmI,34409
@@ -258,15 +258,15 @@ bpy/ops/uilist.py,sha256=CvKQWaIkvk35QZNJ4JYrxDLmoq6HEq06a1wJY3Nqh3E,3256
258
258
  bpy/ops/uv.py,sha256=YpOgyzNq9dQv6TF0JiMhujDcuiPOPRlAeW8PI5zV51g,62478
259
259
  bpy/ops/view2d.py,sha256=_GBefdie6MtPgihbLXWUxdwxmzbQ3y3pMoy5Ieng2Ns,12729
260
260
  bpy/ops/view3d.py,sha256=zwPEfpDKR9qR-XQdQ-J-_NGP9jCq8kJgBWUZdO8lzq0,59752
261
- bpy/ops/wm.py,sha256=PcnGfCL1ttESjQYpSBVvJe_F0FEjC8xzXb-mVAEDdwM,290288
261
+ bpy/ops/wm.py,sha256=vvrZb_VRFHt9xJWnwkHEgtcVFnv4iAfw-hP1XDLsWK4,290533
262
262
  bpy/ops/workspace.py,sha256=PJnVkwoIojMxPW81k5iVz752k_ED1NG76S0IO2KbOUw,4154
263
263
  bpy/ops/world.py,sha256=gVKvKri-E8mwwU3ZZXc09h_nwoe7XE3YVOH8boBUogM,572
264
- bpy/utils/__init__.py,sha256=jCjUpFk24hbKrIquHIs1PsxWRqo9TvPRipQaw25KWlc,11238
264
+ bpy/utils/__init__.py,sha256=R0mT4Z0kdkd651Xd1QOxHdfQi9jJvd2u_Wa7zlzoodw,11238
265
265
  bpy/utils/previews.py,sha256=oGOL8p-TJh7jHzflLSQCT2WwrUGPLQBLUh8Dh2Gav7M,2314
266
266
  bpy/utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
267
267
  bpy/utils/units.py,sha256=lwJazbcrjfb-4hR-hpZFdZzaxhNJ6lYyIvwQOHI2lm4,2778
268
- bpy_extras/__init__.py,sha256=fNP8QuDkQyNIjoq6Q-TBS3ob2HODIE_8TbF-gXKSYBQ,437
269
- bpy_extras/anim_utils.py,sha256=v7PPB9-yjGPYWx7JyAPlVPKyt55endNd3hLXTTu7BwY,2924
268
+ bpy_extras/__init__.py,sha256=H3KyRqzMR_0g_Dz4coyi8hIy6N_YhKKpCz-vCJixUF8,437
269
+ bpy_extras/anim_utils.py,sha256=gC1KEbCJEMIoDv9Cah9P56lGXyq_a2MxP-RbHuOaMCw,2924
270
270
  bpy_extras/asset_utils.py,sha256=RtVNNGlGVc6K5QsRiVGdiQGtDuhZN39ijuJcAkp9F8o,498
271
271
  bpy_extras/bmesh_utils.py,sha256=0x8qtsw1GfeTEuBemF6-YgNs7oG3cEkpX6_z_QInIpg,213
272
272
  bpy_extras/id_map_utils.py,sha256=VzlLilMdf4ceZrZtjUOTKPpCA_yvv-GzottxjRLsX-0,447
@@ -350,7 +350,7 @@ rna_xml/__init__.py,sha256=gVXdeZEyySdOsTsovZP6-COW4AShgF0ow2wSnF_a-TQ,606
350
350
  rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
351
351
  sys_info/__init__.py,sha256=R6zN_jJrhmc_QgS9X_BQrknsTTUotqadk1HGwEnhwEg,129
352
352
  sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
353
- fake_bpy_module-20231203.dist-info/METADATA,sha256=0j05DUOwSwR1IJyYtEDq6NK2tjXuGfYxaufU4-2VMe4,7008
354
- fake_bpy_module-20231203.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
355
- fake_bpy_module-20231203.dist-info/top_level.txt,sha256=7r84ZPNSbRAopA50b0pH3uZ2ysQ2IvkuP0uXadxl7gs,495
356
- fake_bpy_module-20231203.dist-info/RECORD,,
353
+ fake_bpy_module-20231205.dist-info/METADATA,sha256=mjrI0Eagp_lNOLi7IXbT3yKGfJi4bieOiUbT4tC5W-o,7008
354
+ fake_bpy_module-20231205.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
355
+ fake_bpy_module-20231205.dist-info/top_level.txt,sha256=7r84ZPNSbRAopA50b0pH3uZ2ysQ2IvkuP0uXadxl7gs,495
356
+ fake_bpy_module-20231205.dist-info/RECORD,,