fake-bpy-module 20250306__py3-none-any.whl → 20250307__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.

Potentially problematic release.


This version of fake-bpy-module might be problematic. Click here for more details.

bpy/types/__init__.pyi CHANGED
@@ -9103,6 +9103,8 @@ Shared Enum Types <bpy_types_enum_items/index>
9103
9103
  * GeometryNodeImportPLY.output_template
9104
9104
  * GeometryNodeImportSTL.input_template
9105
9105
  * GeometryNodeImportSTL.output_template
9106
+ * GeometryNodeImportText.input_template
9107
+ * GeometryNodeImportText.output_template
9106
9108
  * GeometryNodeIndexOfNearest.input_template
9107
9109
  * GeometryNodeIndexOfNearest.output_template
9108
9110
  * GeometryNodeIndexSwitch.input_template
@@ -97196,6 +97198,102 @@ of the scene and only show nodes of the renderer they are designed for.
97196
97198
  :columns: 2
97197
97199
 
97198
97200
 
97201
+ --------------------
97202
+
97203
+ * bpy_struct.id_data
97204
+ * Node.type
97205
+ * Node.location
97206
+ * Node.location_absolute
97207
+ * Node.width
97208
+ * Node.height
97209
+ * Node.dimensions
97210
+ * Node.name
97211
+ * Node.label
97212
+ * Node.inputs
97213
+ * Node.outputs
97214
+ * Node.internal_links
97215
+ * Node.parent
97216
+ * Node.warning_propagation
97217
+ * Node.use_custom_color
97218
+ * Node.color
97219
+ * Node.color_tag
97220
+ * Node.select
97221
+ * Node.show_options
97222
+ * Node.show_preview
97223
+ * Node.hide
97224
+ * Node.mute
97225
+ * Node.show_texture
97226
+ * Node.bl_idname
97227
+ * Node.bl_label
97228
+ * Node.bl_description
97229
+ * Node.bl_icon
97230
+ * Node.bl_static_type
97231
+ * Node.bl_width_default
97232
+ * Node.bl_width_min
97233
+ * Node.bl_width_max
97234
+ * Node.bl_height_default
97235
+ * Node.bl_height_min
97236
+ * Node.bl_height_max
97237
+
97238
+ :columns: 2
97239
+
97240
+
97241
+ --------------------
97242
+
97243
+ * bpy_struct.as_pointer
97244
+ * bpy_struct.driver_add
97245
+ * bpy_struct.driver_remove
97246
+ * bpy_struct.get
97247
+ * bpy_struct.id_properties_clear
97248
+ * bpy_struct.id_properties_ensure
97249
+ * bpy_struct.id_properties_ui
97250
+ * bpy_struct.is_property_hidden
97251
+ * bpy_struct.is_property_overridable_library
97252
+ * bpy_struct.is_property_readonly
97253
+ * bpy_struct.is_property_set
97254
+ * bpy_struct.items
97255
+ * bpy_struct.keyframe_delete
97256
+ * bpy_struct.keyframe_insert
97257
+ * bpy_struct.keys
97258
+ * bpy_struct.path_from_id
97259
+ * bpy_struct.path_resolve
97260
+ * bpy_struct.pop
97261
+ * bpy_struct.property_overridable_library_set
97262
+ * bpy_struct.property_unset
97263
+ * bpy_struct.rna_ancestors
97264
+ * bpy_struct.type_recast
97265
+ * bpy_struct.values
97266
+ * Node.socket_value_update
97267
+ * Node.is_registered_node_type
97268
+ * Node.poll
97269
+ * Node.poll_instance
97270
+ * Node.update
97271
+ * Node.insert_link
97272
+ * Node.init
97273
+ * Node.copy
97274
+ * Node.free
97275
+ * Node.draw_buttons
97276
+ * Node.draw_buttons_ext
97277
+ * Node.draw_label
97278
+ * Node.debug_zone_body_lazy_function_graph
97279
+ * Node.debug_zone_lazy_function_graph
97280
+ * Node.poll
97281
+ * Node.bl_rna_get_subclass
97282
+ * Node.bl_rna_get_subclass_py
97283
+ * NodeInternal.poll
97284
+ * NodeInternal.poll_instance
97285
+ * NodeInternal.update
97286
+ * NodeInternal.draw_buttons
97287
+ * NodeInternal.draw_buttons_ext
97288
+ * NodeInternal.bl_rna_get_subclass
97289
+ * NodeInternal.bl_rna_get_subclass_py
97290
+ * GeometryNode.poll
97291
+ * GeometryNode.bl_rna_get_subclass
97292
+ * GeometryNode.bl_rna_get_subclass_py
97293
+
97294
+ :columns: 2
97295
+
97296
+
97199
97297
  --------------------
97200
97298
 
97201
97299
  * bpy_struct.id_data
@@ -151790,6 +151888,59 @@ class GeometryNodeImportSTL(GeometryNode, NodeInternal, Node, bpy_struct):
151790
151888
  :rtype: typing.Any
151791
151889
  """
151792
151890
 
151891
+ class GeometryNodeImportText(GeometryNode, NodeInternal, Node, bpy_struct):
151892
+ """Import a string from a text file"""
151893
+
151894
+ @classmethod
151895
+ def is_registered_node_type(cls) -> bool:
151896
+ """True if a registered node type
151897
+
151898
+ :return: Result
151899
+ :rtype: bool
151900
+ """
151901
+
151902
+ @classmethod
151903
+ def input_template(cls, index: int | None) -> NodeInternalSocketTemplate:
151904
+ """Input socket template
151905
+
151906
+ :param index: Index
151907
+ :type index: int | None
151908
+ :return: result
151909
+ :rtype: NodeInternalSocketTemplate
151910
+ """
151911
+
151912
+ @classmethod
151913
+ def output_template(cls, index: int | None) -> NodeInternalSocketTemplate:
151914
+ """Output socket template
151915
+
151916
+ :param index: Index
151917
+ :type index: int | None
151918
+ :return: result
151919
+ :rtype: NodeInternalSocketTemplate
151920
+ """
151921
+
151922
+ @classmethod
151923
+ def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
151924
+ """
151925
+
151926
+ :param id: The RNA type identifier.
151927
+ :type id: str | None
151928
+ :param default:
151929
+ :return: The RNA type or default when not found.
151930
+ :rtype: Struct
151931
+ """
151932
+
151933
+ @classmethod
151934
+ def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
151935
+ """
151936
+
151937
+ :param id: The RNA type identifier.
151938
+ :type id: str | None
151939
+ :param default:
151940
+ :return: The class or default when not found.
151941
+ :rtype: typing.Any
151942
+ """
151943
+
151793
151944
  class GeometryNodeIndexOfNearest(GeometryNode, NodeInternal, Node, bpy_struct):
151794
151945
  """Find the nearest element in a group. Similar to the "Sample Nearest" node"""
151795
151946
 
@@ -212780,7 +212931,7 @@ class SpaceSequenceEditor(Space, bpy_struct):
212780
212931
  """
212781
212932
 
212782
212933
  view_type: bpy._typing.rna_enums.SpaceSequencerViewTypeItems
212783
- """ Type of the Sequencer view (sequencer, preview or both)
212934
+ """ Type of the Sequencer view (blender::seq::SEQuencer, preview or both)
212784
212935
 
212785
212936
  :type: bpy._typing.rna_enums.SpaceSequencerViewTypeItems
212786
212937
  """
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: fake-bpy-module
3
- Version: 20250306
3
+ Version: 20250307
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
@@ -279,7 +279,7 @@ bpy/ops/workspace/__init__.pyi,sha256=hXSSQZl7IwVFrxMveYrlSKGWY7BjrsV-cKagPzhuT0
279
279
  bpy/ops/world/__init__.pyi,sha256=9OhY87-WRRLor-4GQJhDiDJG3M9W5s9yFo9x45Iiycs,628
280
280
  bpy/path/__init__.pyi,sha256=p309InrX9QRoqh0vMXKzNHQIYef9A51c9J4LYU5THxQ,5511
281
281
  bpy/props/__init__.pyi,sha256=QR_11bCyEyK-Q85yZhNDW6BsqHVq73C9IL_qShksqQU,35264
282
- bpy/types/__init__.pyi,sha256=f1259Q_O7xkie4wClVJiZPqNGxtLab8H6gHtMTBFV0g,5480965
282
+ bpy/types/__init__.pyi,sha256=6V8_rsXrwpFWr3QwRVYsLldVfiz0QME00hwBL13VsDk,5484473
283
283
  bpy/utils/__init__.pyi,sha256=sTpVkInNYv883pb3TyZzGLQbn468mQHzz_sUG9UMp6M,14936
284
284
  bpy/utils/previews/__init__.pyi,sha256=RF4ii5Rs-FetM_ZmC0GCpMSiin5evppVj62-CmKK76s,2307
285
285
  bpy/utils/units/__init__.pyi,sha256=dc9ZViPAqOap5ZsFfWoI0d6bHdri3pWWiVeRxAaZr-U,2672
@@ -314,7 +314,7 @@ freestyle/functions/__init__.pyi,sha256=RGdlJWbBctqKBR3p81MsXBk9OWdTuvEoOfBXvxjf
314
314
  freestyle/predicates/__init__.pyi,sha256=Liq_1krkT25RfeNPeEgvKWkLnWtHCuO9-7vXX3lE71E,13488
315
315
  freestyle/shaders/__init__.pyi,sha256=imuo4jXkwaN4dazDARvErEGdn9XuMGlWIKGpnqd3Po0,24041
316
316
  freestyle/types/__init__.pyi,sha256=zCVqLakrYPiSTlYVHLg-455C9aPCEo-eeO-0A1fYFYs,100227
317
- freestyle/utils/__init__.pyi,sha256=ub0HsAFKN7jMbNu3fuP9OpaOSHywBpSckuXSexz0Bos,5135
317
+ freestyle/utils/__init__.pyi,sha256=k2JFp4C3DUpnkVgR1B32ZDux08pAcsceSuWBnIEHD9A,5135
318
318
  freestyle/utils/ContextFunctions/__init__.pyi,sha256=YvDLJXMxKbbqBS0so4MnfuSN1g4wNAFOXbpW7_g4AR0,3472
319
319
  gpu/__init__.pyi,sha256=80Udrv8AAvblVeWgcU709t4PmsX3ShvU2TaWj7qv0uk,8026
320
320
  gpu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -361,7 +361,7 @@ rna_prop_ui/__init__.pyi,sha256=o3yE2C_BSi2O_ZJM_Jao06i6seWMRNQcZaI6keKjpFE,1308
361
361
  rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
362
362
  rna_xml/__init__.pyi,sha256=EBP-inpL9KRsjGftcoza9_G_Do5UjXw62eAvuEMoaO0,604
363
363
  rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
364
- fake_bpy_module-20250306.dist-info/METADATA,sha256=nZYq897MEoicNgj3HMAIMhDRzZwuYJSiwbuMf_GOjhQ,7429
365
- fake_bpy_module-20250306.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
366
- fake_bpy_module-20250306.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
367
- fake_bpy_module-20250306.dist-info/RECORD,,
364
+ fake_bpy_module-20250307.dist-info/METADATA,sha256=l3nycExLvi7XDoUq-GEmI3Xdi55VDoF3wNWurgObYQ8,7429
365
+ fake_bpy_module-20250307.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
366
+ fake_bpy_module-20250307.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
367
+ fake_bpy_module-20250307.dist-info/RECORD,,
@@ -125,7 +125,7 @@ def material_from_fedge(fe):
125
125
  """get the diffuse RGBA color from an FEdge"""
126
126
 
127
127
  def normal_at_I0D(it): ...
128
- def pairwise(iterable, types={Stroke, StrokeVertexIterator}):
128
+ def pairwise(iterable, types={StrokeVertexIterator, Stroke}):
129
129
  """Yields a tuple containing the previous and current object"""
130
130
 
131
131
  def rgb_to_bw(r, g, b):