fake-bpy-module 20231205__tar.gz → 20231207__tar.gz

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.
Files changed (912) hide show
  1. fake-bpy-module-20231207/PKG-INFO +175 -0
  2. fake-bpy-module-20231207/README.md +149 -0
  3. fake-bpy-module-20231207/addon_utils/__init__.pyi +84 -0
  4. fake-bpy-module-20231207/animsys_refactor/__init__.pyi +55 -0
  5. fake-bpy-module-20231207/aud/__init__.pyi +1190 -0
  6. fake-bpy-module-20231207/bgl/__init__.pyi +5084 -0
  7. fake-bpy-module-20231207/bl_app_override/__init__.pyi +31 -0
  8. fake-bpy-module-20231207/bl_app_override/helpers/__init__.pyi +42 -0
  9. fake-bpy-module-20231207/bl_app_template_utils/__init__.pyi +36 -0
  10. fake-bpy-module-20231207/bl_console_utils/autocomplete/__init__.pyi +8 -0
  11. fake-bpy-module-20231207/bl_console_utils/autocomplete/complete_calltip/__init__.pyi +44 -0
  12. fake-bpy-module-20231207/bl_console_utils/autocomplete/complete_import/__init__.pyi +28 -0
  13. fake-bpy-module-20231207/bl_console_utils/autocomplete/complete_namespace/__init__.pyi +44 -0
  14. fake-bpy-module-20231207/bl_console_utils/autocomplete/intellisense/__init__.pyi +20 -0
  15. fake-bpy-module-20231207/bl_i18n_utils/__init__.pyi +11 -0
  16. fake-bpy-module-20231207/bl_i18n_utils/bl_extract_messages/__init__.pyi +124 -0
  17. fake-bpy-module-20231207/bl_i18n_utils/merge_po/__init__.pyi +12 -0
  18. fake-bpy-module-20231207/bl_i18n_utils/settings/__init__.pyi +66 -0
  19. fake-bpy-module-20231207/bl_i18n_utils/utils/__init__.pyi +338 -0
  20. fake-bpy-module-20231207/bl_i18n_utils/utils_cli/__init__.pyi +52 -0
  21. fake-bpy-module-20231207/bl_i18n_utils/utils_languages_menu/__init__.pyi +12 -0
  22. fake-bpy-module-20231207/bl_i18n_utils/utils_rtl/__init__.pyi +20 -0
  23. fake-bpy-module-20231207/bl_keymap_utils/__init__.pyi +9 -0
  24. fake-bpy-module-20231207/bl_keymap_utils/io/__init__.pyi +76 -0
  25. fake-bpy-module-20231207/bl_keymap_utils/keymap_from_toolbar/__init__.pyi +12 -0
  26. fake-bpy-module-20231207/bl_keymap_utils/keymap_hierarchy/__init__.pyi +12 -0
  27. fake-bpy-module-20231207/bl_keymap_utils/platform_helpers/__init__.pyi +20 -0
  28. fake-bpy-module-20231207/bl_keymap_utils/versioning/__init__.pyi +12 -0
  29. fake-bpy-module-20231207/bl_math/__init__.pyi +52 -0
  30. fake-bpy-module-20231207/bl_operators/__init__.pyi +49 -0
  31. fake-bpy-module-20231207/bl_operators/add_mesh_torus/__init__.pyi +231 -0
  32. fake-bpy-module-20231207/bl_operators/anim/__init__.pyi +1291 -0
  33. fake-bpy-module-20231207/bl_operators/assets/__init__.pyi +586 -0
  34. fake-bpy-module-20231207/bl_operators/bmesh/find_adjacent/__init__.pyi +76 -0
  35. fake-bpy-module-20231207/bl_operators/clip/__init__.pyi +1898 -0
  36. fake-bpy-module-20231207/bl_operators/console/__init__.pyi +918 -0
  37. fake-bpy-module-20231207/bl_operators/constraint/__init__.pyi +745 -0
  38. fake-bpy-module-20231207/bl_operators/file/__init__.pyi +560 -0
  39. fake-bpy-module-20231207/bl_operators/freestyle/__init__.pyi +751 -0
  40. fake-bpy-module-20231207/bl_operators/geometry_nodes/__init__.pyi +2553 -0
  41. fake-bpy-module-20231207/bl_operators/image/__init__.pyi +548 -0
  42. fake-bpy-module-20231207/bl_operators/mesh/__init__.pyi +566 -0
  43. fake-bpy-module-20231207/bl_operators/node/__init__.pyi +1814 -0
  44. fake-bpy-module-20231207/bl_operators/object/__init__.pyi +3212 -0
  45. fake-bpy-module-20231207/bl_operators/object_align/__init__.pyi +215 -0
  46. fake-bpy-module-20231207/bl_operators/object_quick_effects/__init__.pyi +777 -0
  47. fake-bpy-module-20231207/bl_operators/object_randomize_transform/__init__.pyi +199 -0
  48. fake-bpy-module-20231207/bl_operators/presets/__init__.pyi +3776 -0
  49. fake-bpy-module-20231207/bl_operators/rigidbody/__init__.pyi +566 -0
  50. fake-bpy-module-20231207/bl_operators/screen_play_rendered_anim/__init__.pyi +192 -0
  51. fake-bpy-module-20231207/bl_operators/screen_play_rendered_anim/py.typed +0 -0
  52. fake-bpy-module-20231207/bl_operators/sequencer/__init__.pyi +1001 -0
  53. fake-bpy-module-20231207/bl_operators/sequencer/py.typed +0 -0
  54. fake-bpy-module-20231207/bl_operators/spreadsheet/__init__.pyi +202 -0
  55. fake-bpy-module-20231207/bl_operators/spreadsheet/py.typed +0 -0
  56. fake-bpy-module-20231207/bl_operators/userpref/__init__.pyi +4701 -0
  57. fake-bpy-module-20231207/bl_operators/userpref/py.typed +0 -0
  58. fake-bpy-module-20231207/bl_operators/uvcalc_follow_active/__init__.pyi +212 -0
  59. fake-bpy-module-20231207/bl_operators/uvcalc_follow_active/py.typed +0 -0
  60. fake-bpy-module-20231207/bl_operators/uvcalc_lightmap/__init__.pyi +257 -0
  61. fake-bpy-module-20231207/bl_operators/uvcalc_lightmap/py.typed +0 -0
  62. fake-bpy-module-20231207/bl_operators/uvcalc_transform/__init__.pyi +501 -0
  63. fake-bpy-module-20231207/bl_operators/uvcalc_transform/py.typed +0 -0
  64. fake-bpy-module-20231207/bl_operators/vertexpaint_dirt/__init__.pyi +207 -0
  65. fake-bpy-module-20231207/bl_operators/vertexpaint_dirt/py.typed +0 -0
  66. fake-bpy-module-20231207/bl_operators/view3d/__init__.pyi +955 -0
  67. fake-bpy-module-20231207/bl_operators/view3d/py.typed +0 -0
  68. fake-bpy-module-20231207/bl_operators/wm/__init__.pyi +8409 -0
  69. fake-bpy-module-20231207/bl_operators/wm/py.typed +0 -0
  70. fake-bpy-module-20231207/bl_previews_utils/bl_previews_render/__init__.pyi +60 -0
  71. fake-bpy-module-20231207/bl_previews_utils/bl_previews_render/py.typed +0 -0
  72. fake-bpy-module-20231207/bl_previews_utils/py.typed +0 -0
  73. fake-bpy-module-20231207/bl_rna_utils/data_path/__init__.pyi +25 -0
  74. fake-bpy-module-20231207/bl_rna_utils/data_path/py.typed +0 -0
  75. fake-bpy-module-20231207/bl_rna_utils/py.typed +0 -0
  76. fake-bpy-module-20231207/bl_text_utils/external_editor/__init__.pyi +12 -0
  77. fake-bpy-module-20231207/bl_text_utils/external_editor/py.typed +0 -0
  78. fake-bpy-module-20231207/bl_text_utils/py.typed +0 -0
  79. fake-bpy-module-20231207/bl_ui/__init__.pyi +706 -0
  80. fake-bpy-module-20231207/bl_ui/asset_shelf/__init__.pyi +202 -0
  81. fake-bpy-module-20231207/bl_ui/asset_shelf/py.typed +0 -0
  82. fake-bpy-module-20231207/bl_ui/generic_ui_list/__init__.pyi +629 -0
  83. fake-bpy-module-20231207/bl_ui/generic_ui_list/py.typed +0 -0
  84. fake-bpy-module-20231207/bl_ui/node_add_menu/__init__.pyi +260 -0
  85. fake-bpy-module-20231207/bl_ui/node_add_menu/py.typed +0 -0
  86. fake-bpy-module-20231207/bl_ui/node_add_menu_compositor/__init__.pyi +3739 -0
  87. fake-bpy-module-20231207/bl_ui/node_add_menu_compositor/py.typed +0 -0
  88. fake-bpy-module-20231207/bl_ui/node_add_menu_geometry/__init__.pyi +8520 -0
  89. fake-bpy-module-20231207/bl_ui/node_add_menu_geometry/py.typed +0 -0
  90. fake-bpy-module-20231207/bl_ui/node_add_menu_shader/__init__.pyi +2139 -0
  91. fake-bpy-module-20231207/bl_ui/node_add_menu_shader/py.typed +0 -0
  92. fake-bpy-module-20231207/bl_ui/node_add_menu_texture/__init__.pyi +1868 -0
  93. fake-bpy-module-20231207/bl_ui/node_add_menu_texture/py.typed +0 -0
  94. fake-bpy-module-20231207/bl_ui/properties_animviz/__init__.pyi +38 -0
  95. fake-bpy-module-20231207/bl_ui/properties_animviz/py.typed +0 -0
  96. fake-bpy-module-20231207/bl_ui/properties_collection/__init__.pyi +1051 -0
  97. fake-bpy-module-20231207/bl_ui/properties_collection/py.typed +0 -0
  98. fake-bpy-module-20231207/bl_ui/properties_constraint/__init__.pyi +29694 -0
  99. fake-bpy-module-20231207/bl_ui/properties_constraint/py.typed +0 -0
  100. fake-bpy-module-20231207/bl_ui/properties_data_armature/__init__.pyi +2274 -0
  101. fake-bpy-module-20231207/bl_ui/properties_data_armature/py.typed +0 -0
  102. fake-bpy-module-20231207/bl_ui/properties_data_bone/__init__.pyi +2087 -0
  103. fake-bpy-module-20231207/bl_ui/properties_data_bone/py.typed +0 -0
  104. fake-bpy-module-20231207/bl_ui/properties_data_camera/__init__.pyi +3004 -0
  105. fake-bpy-module-20231207/bl_ui/properties_data_camera/py.typed +0 -0
  106. fake-bpy-module-20231207/bl_ui/properties_data_curve/__init__.pyi +3164 -0
  107. fake-bpy-module-20231207/bl_ui/properties_data_curve/py.typed +0 -0
  108. fake-bpy-module-20231207/bl_ui/properties_data_curves/__init__.pyi +1247 -0
  109. fake-bpy-module-20231207/bl_ui/properties_data_curves/py.typed +0 -0
  110. fake-bpy-module-20231207/bl_ui/properties_data_empty/__init__.pyi +426 -0
  111. fake-bpy-module-20231207/bl_ui/properties_data_empty/py.typed +0 -0
  112. fake-bpy-module-20231207/bl_ui/properties_data_gpencil/__init__.pyi +3758 -0
  113. fake-bpy-module-20231207/bl_ui/properties_data_gpencil/py.typed +0 -0
  114. fake-bpy-module-20231207/bl_ui/properties_data_grease_pencil/__init__.pyi +632 -0
  115. fake-bpy-module-20231207/bl_ui/properties_data_grease_pencil/py.typed +0 -0
  116. fake-bpy-module-20231207/bl_ui/properties_data_lattice/__init__.pyi +637 -0
  117. fake-bpy-module-20231207/bl_ui/properties_data_lattice/py.typed +0 -0
  118. fake-bpy-module-20231207/bl_ui/properties_data_light/__init__.pyi +2111 -0
  119. fake-bpy-module-20231207/bl_ui/properties_data_light/py.typed +0 -0
  120. fake-bpy-module-20231207/bl_ui/properties_data_lightprobe/__init__.pyi +1264 -0
  121. fake-bpy-module-20231207/bl_ui/properties_data_lightprobe/py.typed +0 -0
  122. fake-bpy-module-20231207/bl_ui/properties_data_mesh/__init__.pyi +4052 -0
  123. fake-bpy-module-20231207/bl_ui/properties_data_mesh/py.typed +0 -0
  124. fake-bpy-module-20231207/bl_ui/properties_data_metaball/__init__.pyi +1047 -0
  125. fake-bpy-module-20231207/bl_ui/properties_data_metaball/py.typed +0 -0
  126. fake-bpy-module-20231207/bl_ui/properties_data_modifier/__init__.pyi +1741 -0
  127. fake-bpy-module-20231207/bl_ui/properties_data_modifier/py.typed +0 -0
  128. fake-bpy-module-20231207/bl_ui/properties_data_pointcloud/__init__.pyi +1045 -0
  129. fake-bpy-module-20231207/bl_ui/properties_data_pointcloud/py.typed +0 -0
  130. fake-bpy-module-20231207/bl_ui/properties_data_shaderfx/__init__.pyi +214 -0
  131. fake-bpy-module-20231207/bl_ui/properties_data_shaderfx/py.typed +0 -0
  132. fake-bpy-module-20231207/bl_ui/properties_data_speaker/__init__.pyi +1056 -0
  133. fake-bpy-module-20231207/bl_ui/properties_data_speaker/py.typed +0 -0
  134. fake-bpy-module-20231207/bl_ui/properties_data_volume/__init__.pyi +1652 -0
  135. fake-bpy-module-20231207/bl_ui/properties_data_volume/py.typed +0 -0
  136. fake-bpy-module-20231207/bl_ui/properties_freestyle/__init__.pyi +5309 -0
  137. fake-bpy-module-20231207/bl_ui/properties_freestyle/py.typed +0 -0
  138. fake-bpy-module-20231207/bl_ui/properties_grease_pencil_common/__init__.pyi +2780 -0
  139. fake-bpy-module-20231207/bl_ui/properties_grease_pencil_common/py.typed +0 -0
  140. fake-bpy-module-20231207/bl_ui/properties_mask_common/__init__.pyi +1554 -0
  141. fake-bpy-module-20231207/bl_ui/properties_mask_common/py.typed +0 -0
  142. fake-bpy-module-20231207/bl_ui/properties_material/__init__.pyi +3117 -0
  143. fake-bpy-module-20231207/bl_ui/properties_material/py.typed +0 -0
  144. fake-bpy-module-20231207/bl_ui/properties_material_gpencil/__init__.pyi +2086 -0
  145. fake-bpy-module-20231207/bl_ui/properties_material_gpencil/py.typed +0 -0
  146. fake-bpy-module-20231207/bl_ui/properties_object/__init__.pyi +2875 -0
  147. fake-bpy-module-20231207/bl_ui/properties_object/py.typed +0 -0
  148. fake-bpy-module-20231207/bl_ui/properties_output/__init__.pyi +3799 -0
  149. fake-bpy-module-20231207/bl_ui/properties_output/py.typed +0 -0
  150. fake-bpy-module-20231207/bl_ui/properties_paint_common/__init__.pyi +814 -0
  151. fake-bpy-module-20231207/bl_ui/properties_paint_common/py.typed +0 -0
  152. fake-bpy-module-20231207/bl_ui/properties_particle/__init__.pyi +10938 -0
  153. fake-bpy-module-20231207/bl_ui/properties_particle/py.typed +0 -0
  154. fake-bpy-module-20231207/bl_ui/properties_physics_cloth/__init__.pyi +2984 -0
  155. fake-bpy-module-20231207/bl_ui/properties_physics_cloth/py.typed +0 -0
  156. fake-bpy-module-20231207/bl_ui/properties_physics_common/__init__.pyi +277 -0
  157. fake-bpy-module-20231207/bl_ui/properties_physics_common/py.typed +0 -0
  158. fake-bpy-module-20231207/bl_ui/properties_physics_dynamicpaint/__init__.pyi +5431 -0
  159. fake-bpy-module-20231207/bl_ui/properties_physics_dynamicpaint/py.typed +0 -0
  160. fake-bpy-module-20231207/bl_ui/properties_physics_field/__init__.pyi +2220 -0
  161. fake-bpy-module-20231207/bl_ui/properties_physics_field/py.typed +0 -0
  162. fake-bpy-module-20231207/bl_ui/properties_physics_fluid/__init__.pyi +7296 -0
  163. fake-bpy-module-20231207/bl_ui/properties_physics_fluid/py.typed +0 -0
  164. fake-bpy-module-20231207/bl_ui/properties_physics_geometry_nodes/__init__.pyi +214 -0
  165. fake-bpy-module-20231207/bl_ui/properties_physics_geometry_nodes/py.typed +0 -0
  166. fake-bpy-module-20231207/bl_ui/properties_physics_rigidbody/__init__.pyi +1698 -0
  167. fake-bpy-module-20231207/bl_ui/properties_physics_rigidbody/py.typed +0 -0
  168. fake-bpy-module-20231207/bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +2734 -0
  169. fake-bpy-module-20231207/bl_ui/properties_physics_rigidbody_constraint/py.typed +0 -0
  170. fake-bpy-module-20231207/bl_ui/properties_physics_softbody/__init__.pyi +3198 -0
  171. fake-bpy-module-20231207/bl_ui/properties_physics_softbody/py.typed +0 -0
  172. fake-bpy-module-20231207/bl_ui/properties_render/__init__.pyi +12664 -0
  173. fake-bpy-module-20231207/bl_ui/properties_render/py.typed +0 -0
  174. fake-bpy-module-20231207/bl_ui/properties_scene/__init__.pyi +2872 -0
  175. fake-bpy-module-20231207/bl_ui/properties_scene/py.typed +0 -0
  176. fake-bpy-module-20231207/bl_ui/properties_texture/__init__.pyi +5470 -0
  177. fake-bpy-module-20231207/bl_ui/properties_texture/py.typed +0 -0
  178. fake-bpy-module-20231207/bl_ui/properties_view_layer/__init__.pyi +3493 -0
  179. fake-bpy-module-20231207/bl_ui/properties_view_layer/py.typed +0 -0
  180. fake-bpy-module-20231207/bl_ui/properties_workspace/__init__.pyi +630 -0
  181. fake-bpy-module-20231207/bl_ui/properties_workspace/py.typed +0 -0
  182. fake-bpy-module-20231207/bl_ui/properties_world/__init__.pyi +1478 -0
  183. fake-bpy-module-20231207/bl_ui/properties_world/py.typed +0 -0
  184. fake-bpy-module-20231207/bl_ui/py.typed +0 -0
  185. fake-bpy-module-20231207/bl_ui/space_clip/__init__.pyi +14313 -0
  186. fake-bpy-module-20231207/bl_ui/space_clip/py.typed +0 -0
  187. fake-bpy-module-20231207/bl_ui/space_console/__init__.pyi +1221 -0
  188. fake-bpy-module-20231207/bl_ui/space_console/py.typed +0 -0
  189. fake-bpy-module-20231207/bl_ui/space_dopesheet/__init__.pyi +5388 -0
  190. fake-bpy-module-20231207/bl_ui/space_dopesheet/py.typed +0 -0
  191. fake-bpy-module-20231207/bl_ui/space_filebrowser/__init__.pyi +5996 -0
  192. fake-bpy-module-20231207/bl_ui/space_filebrowser/py.typed +0 -0
  193. fake-bpy-module-20231207/bl_ui/space_graph/__init__.pyi +4053 -0
  194. fake-bpy-module-20231207/bl_ui/space_graph/py.typed +0 -0
  195. fake-bpy-module-20231207/bl_ui/space_image/__init__.pyi +14801 -0
  196. fake-bpy-module-20231207/bl_ui/space_image/py.typed +0 -0
  197. fake-bpy-module-20231207/bl_ui/space_info/__init__.pyi +1216 -0
  198. fake-bpy-module-20231207/bl_ui/space_info/py.typed +0 -0
  199. fake-bpy-module-20231207/bl_ui/space_nla/__init__.pyi +3460 -0
  200. fake-bpy-module-20231207/bl_ui/space_nla/py.typed +0 -0
  201. fake-bpy-module-20231207/bl_ui/space_node/__init__.pyi +6519 -0
  202. fake-bpy-module-20231207/bl_ui/space_node/py.typed +0 -0
  203. fake-bpy-module-20231207/bl_ui/space_outliner/__init__.pyi +2864 -0
  204. fake-bpy-module-20231207/bl_ui/space_outliner/py.typed +0 -0
  205. fake-bpy-module-20231207/bl_ui/space_properties/__init__.pyi +575 -0
  206. fake-bpy-module-20231207/bl_ui/space_properties/py.typed +0 -0
  207. fake-bpy-module-20231207/bl_ui/space_sequencer/__init__.pyi +15360 -0
  208. fake-bpy-module-20231207/bl_ui/space_sequencer/py.typed +0 -0
  209. fake-bpy-module-20231207/bl_ui/space_spreadsheet/__init__.pyi +226 -0
  210. fake-bpy-module-20231207/bl_ui/space_spreadsheet/py.typed +0 -0
  211. fake-bpy-module-20231207/bl_ui/space_statusbar/__init__.pyi +190 -0
  212. fake-bpy-module-20231207/bl_ui/space_statusbar/py.typed +0 -0
  213. fake-bpy-module-20231207/bl_ui/space_text/__init__.pyi +3223 -0
  214. fake-bpy-module-20231207/bl_ui/space_text/py.typed +0 -0
  215. fake-bpy-module-20231207/bl_ui/space_time/__init__.pyi +1472 -0
  216. fake-bpy-module-20231207/bl_ui/space_time/py.typed +0 -0
  217. fake-bpy-module-20231207/bl_ui/space_toolsystem_common/__init__.pyi +435 -0
  218. fake-bpy-module-20231207/bl_ui/space_toolsystem_common/py.typed +0 -0
  219. fake-bpy-module-20231207/bl_ui/space_toolsystem_toolbar/__init__.pyi +1671 -0
  220. fake-bpy-module-20231207/bl_ui/space_toolsystem_toolbar/py.typed +0 -0
  221. fake-bpy-module-20231207/bl_ui/space_topbar/__init__.pyi +5296 -0
  222. fake-bpy-module-20231207/bl_ui/space_topbar/py.typed +0 -0
  223. fake-bpy-module-20231207/bl_ui/space_userpref/__init__.pyi +17826 -0
  224. fake-bpy-module-20231207/bl_ui/space_userpref/py.typed +0 -0
  225. fake-bpy-module-20231207/bl_ui/space_view3d/__init__.pyi +51846 -0
  226. fake-bpy-module-20231207/bl_ui/space_view3d/py.typed +0 -0
  227. fake-bpy-module-20231207/bl_ui/space_view3d_toolbar/__init__.pyi +18993 -0
  228. fake-bpy-module-20231207/bl_ui/space_view3d_toolbar/py.typed +0 -0
  229. fake-bpy-module-20231207/bl_ui/utils/__init__.pyi +40 -0
  230. fake-bpy-module-20231207/bl_ui/utils/py.typed +0 -0
  231. fake-bpy-module-20231207/bl_ui_utils/__init__.pyi +6 -0
  232. fake-bpy-module-20231207/bl_ui_utils/bug_report_url/__init__.pyi +12 -0
  233. fake-bpy-module-20231207/bl_ui_utils/bug_report_url/py.typed +0 -0
  234. fake-bpy-module-20231207/bl_ui_utils/layout/__init__.pyi +12 -0
  235. fake-bpy-module-20231207/bl_ui_utils/layout/py.typed +0 -0
  236. fake-bpy-module-20231207/bl_ui_utils/py.typed +0 -0
  237. fake-bpy-module-20231207/blend_render_info/__init__.pyi +24 -0
  238. fake-bpy-module-20231207/blend_render_info/py.typed +0 -0
  239. fake-bpy-module-20231207/blf/__init__.pyi +231 -0
  240. fake-bpy-module-20231207/blf/py.typed +0 -0
  241. fake-bpy-module-20231207/bmesh/__init__.pyi +51 -0
  242. fake-bpy-module-20231207/bmesh/geometry/__init__.pyi +23 -0
  243. fake-bpy-module-20231207/bmesh/geometry/py.typed +0 -0
  244. fake-bpy-module-20231207/bmesh/ops/__init__.pyi +1935 -0
  245. fake-bpy-module-20231207/bmesh/ops/py.typed +0 -0
  246. fake-bpy-module-20231207/bmesh/py.typed +0 -0
  247. fake-bpy-module-20231207/bmesh/types/__init__.pyi +1399 -0
  248. fake-bpy-module-20231207/bmesh/types/py.typed +0 -0
  249. fake-bpy-module-20231207/bmesh/utils/__init__.pyi +207 -0
  250. fake-bpy-module-20231207/bmesh/utils/py.typed +0 -0
  251. fake-bpy-module-20231207/bpy/__init__.pyi +18 -0
  252. fake-bpy-module-20231207/bpy/app/__init__.pyi +247 -0
  253. fake-bpy-module-20231207/bpy/app/handlers/__init__.pyi +151 -0
  254. fake-bpy-module-20231207/bpy/app/handlers/py.typed +0 -0
  255. fake-bpy-module-20231207/bpy/app/icons/__init__.pyi +42 -0
  256. fake-bpy-module-20231207/bpy/app/icons/py.typed +0 -0
  257. fake-bpy-module-20231207/bpy/app/py.typed +0 -0
  258. fake-bpy-module-20231207/bpy/app/timers/__init__.pyi +42 -0
  259. fake-bpy-module-20231207/bpy/app/timers/py.typed +0 -0
  260. fake-bpy-module-20231207/bpy/app/translations/__init__.pyi +107 -0
  261. fake-bpy-module-20231207/bpy/app/translations/py.typed +0 -0
  262. fake-bpy-module-20231207/bpy/msgbus/__init__.pyi +40 -0
  263. fake-bpy-module-20231207/bpy/msgbus/py.typed +0 -0
  264. fake-bpy-module-20231207/bpy/ops/__init__.pyi +81 -0
  265. fake-bpy-module-20231207/bpy/ops/action/__init__.pyi +723 -0
  266. fake-bpy-module-20231207/bpy/ops/action/py.typed +0 -0
  267. fake-bpy-module-20231207/bpy/ops/anim/__init__.pyi +978 -0
  268. fake-bpy-module-20231207/bpy/ops/anim/py.typed +0 -0
  269. fake-bpy-module-20231207/bpy/ops/armature/__init__.pyi +858 -0
  270. fake-bpy-module-20231207/bpy/ops/armature/py.typed +0 -0
  271. fake-bpy-module-20231207/bpy/ops/asset/__init__.pyi +339 -0
  272. fake-bpy-module-20231207/bpy/ops/asset/py.typed +0 -0
  273. fake-bpy-module-20231207/bpy/ops/boid/__init__.pyi +127 -0
  274. fake-bpy-module-20231207/bpy/ops/boid/py.typed +0 -0
  275. fake-bpy-module-20231207/bpy/ops/brush/__init__.pyi +171 -0
  276. fake-bpy-module-20231207/bpy/ops/brush/py.typed +0 -0
  277. fake-bpy-module-20231207/bpy/ops/buttons/__init__.pyi +255 -0
  278. fake-bpy-module-20231207/bpy/ops/buttons/py.typed +0 -0
  279. fake-bpy-module-20231207/bpy/ops/cachefile/__init__.pyi +241 -0
  280. fake-bpy-module-20231207/bpy/ops/cachefile/py.typed +0 -0
  281. fake-bpy-module-20231207/bpy/ops/camera/__init__.pyi +60 -0
  282. fake-bpy-module-20231207/bpy/ops/camera/py.typed +0 -0
  283. fake-bpy-module-20231207/bpy/ops/clip/__init__.pyi +1782 -0
  284. fake-bpy-module-20231207/bpy/ops/clip/py.typed +0 -0
  285. fake-bpy-module-20231207/bpy/ops/cloth/__init__.pyi +31 -0
  286. fake-bpy-module-20231207/bpy/ops/cloth/py.typed +0 -0
  287. fake-bpy-module-20231207/bpy/ops/collection/__init__.pyi +95 -0
  288. fake-bpy-module-20231207/bpy/ops/collection/py.typed +0 -0
  289. fake-bpy-module-20231207/bpy/ops/console/__init__.pyi +370 -0
  290. fake-bpy-module-20231207/bpy/ops/console/py.typed +0 -0
  291. fake-bpy-module-20231207/bpy/ops/constraint/__init__.pyi +391 -0
  292. fake-bpy-module-20231207/bpy/ops/constraint/py.typed +0 -0
  293. fake-bpy-module-20231207/bpy/ops/curve/__init__.pyi +1052 -0
  294. fake-bpy-module-20231207/bpy/ops/curve/py.typed +0 -0
  295. fake-bpy-module-20231207/bpy/ops/curves/__init__.pyi +259 -0
  296. fake-bpy-module-20231207/bpy/ops/curves/py.typed +0 -0
  297. fake-bpy-module-20231207/bpy/ops/cycles/__init__.pyi +67 -0
  298. fake-bpy-module-20231207/bpy/ops/cycles/py.typed +0 -0
  299. fake-bpy-module-20231207/bpy/ops/dpaint/__init__.pyi +87 -0
  300. fake-bpy-module-20231207/bpy/ops/dpaint/py.typed +0 -0
  301. fake-bpy-module-20231207/bpy/ops/ed/__init__.pyi +276 -0
  302. fake-bpy-module-20231207/bpy/ops/ed/py.typed +0 -0
  303. fake-bpy-module-20231207/bpy/ops/export_anim/__init__.pyi +45 -0
  304. fake-bpy-module-20231207/bpy/ops/export_anim/py.typed +0 -0
  305. fake-bpy-module-20231207/bpy/ops/export_mesh/__init__.pyi +62 -0
  306. fake-bpy-module-20231207/bpy/ops/export_mesh/py.typed +0 -0
  307. fake-bpy-module-20231207/bpy/ops/export_scene/__init__.pyi +577 -0
  308. fake-bpy-module-20231207/bpy/ops/export_scene/py.typed +0 -0
  309. fake-bpy-module-20231207/bpy/ops/file/__init__.pyi +787 -0
  310. fake-bpy-module-20231207/bpy/ops/file/py.typed +0 -0
  311. fake-bpy-module-20231207/bpy/ops/fluid/__init__.pyi +224 -0
  312. fake-bpy-module-20231207/bpy/ops/fluid/py.typed +0 -0
  313. fake-bpy-module-20231207/bpy/ops/font/__init__.pyi +537 -0
  314. fake-bpy-module-20231207/bpy/ops/font/py.typed +0 -0
  315. fake-bpy-module-20231207/bpy/ops/geometry/__init__.pyi +219 -0
  316. fake-bpy-module-20231207/bpy/ops/geometry/py.typed +0 -0
  317. fake-bpy-module-20231207/bpy/ops/gizmogroup/__init__.pyi +52 -0
  318. fake-bpy-module-20231207/bpy/ops/gizmogroup/py.typed +0 -0
  319. fake-bpy-module-20231207/bpy/ops/gpencil/__init__.pyi +3247 -0
  320. fake-bpy-module-20231207/bpy/ops/gpencil/py.typed +0 -0
  321. fake-bpy-module-20231207/bpy/ops/graph/__init__.pyi +1392 -0
  322. fake-bpy-module-20231207/bpy/ops/graph/py.typed +0 -0
  323. fake-bpy-module-20231207/bpy/ops/grease_pencil/__init__.pyi +724 -0
  324. fake-bpy-module-20231207/bpy/ops/grease_pencil/py.typed +0 -0
  325. fake-bpy-module-20231207/bpy/ops/image/__init__.pyi +1261 -0
  326. fake-bpy-module-20231207/bpy/ops/image/py.typed +0 -0
  327. fake-bpy-module-20231207/bpy/ops/import_anim/__init__.pyi +58 -0
  328. fake-bpy-module-20231207/bpy/ops/import_anim/py.typed +0 -0
  329. fake-bpy-module-20231207/bpy/ops/import_curve/__init__.pyi +26 -0
  330. fake-bpy-module-20231207/bpy/ops/import_curve/py.typed +0 -0
  331. fake-bpy-module-20231207/bpy/ops/import_mesh/__init__.pyi +50 -0
  332. fake-bpy-module-20231207/bpy/ops/import_mesh/py.typed +0 -0
  333. fake-bpy-module-20231207/bpy/ops/import_scene/__init__.pyi +191 -0
  334. fake-bpy-module-20231207/bpy/ops/import_scene/py.typed +0 -0
  335. fake-bpy-module-20231207/bpy/ops/info/__init__.pyi +140 -0
  336. fake-bpy-module-20231207/bpy/ops/info/py.typed +0 -0
  337. fake-bpy-module-20231207/bpy/ops/lattice/__init__.pyi +153 -0
  338. fake-bpy-module-20231207/bpy/ops/lattice/py.typed +0 -0
  339. fake-bpy-module-20231207/bpy/ops/marker/__init__.pyi +238 -0
  340. fake-bpy-module-20231207/bpy/ops/marker/py.typed +0 -0
  341. fake-bpy-module-20231207/bpy/ops/mask/__init__.pyi +747 -0
  342. fake-bpy-module-20231207/bpy/ops/mask/py.typed +0 -0
  343. fake-bpy-module-20231207/bpy/ops/material/__init__.pyi +47 -0
  344. fake-bpy-module-20231207/bpy/ops/material/py.typed +0 -0
  345. fake-bpy-module-20231207/bpy/ops/mball/__init__.pyi +168 -0
  346. fake-bpy-module-20231207/bpy/ops/mball/py.typed +0 -0
  347. fake-bpy-module-20231207/bpy/ops/mesh/__init__.pyi +4168 -0
  348. fake-bpy-module-20231207/bpy/ops/mesh/py.typed +0 -0
  349. fake-bpy-module-20231207/bpy/ops/nla/__init__.pyi +756 -0
  350. fake-bpy-module-20231207/bpy/ops/nla/py.typed +0 -0
  351. fake-bpy-module-20231207/bpy/ops/node/__init__.pyi +1894 -0
  352. fake-bpy-module-20231207/bpy/ops/node/py.typed +0 -0
  353. fake-bpy-module-20231207/bpy/ops/object/__init__.pyi +5343 -0
  354. fake-bpy-module-20231207/bpy/ops/object/py.typed +0 -0
  355. fake-bpy-module-20231207/bpy/ops/outliner/__init__.pyi +1172 -0
  356. fake-bpy-module-20231207/bpy/ops/outliner/py.typed +0 -0
  357. fake-bpy-module-20231207/bpy/ops/paint/__init__.pyi +1067 -0
  358. fake-bpy-module-20231207/bpy/ops/paint/py.typed +0 -0
  359. fake-bpy-module-20231207/bpy/ops/paintcurve/__init__.pyi +148 -0
  360. fake-bpy-module-20231207/bpy/ops/paintcurve/py.typed +0 -0
  361. fake-bpy-module-20231207/bpy/ops/palette/__init__.pyi +123 -0
  362. fake-bpy-module-20231207/bpy/ops/palette/py.typed +0 -0
  363. fake-bpy-module-20231207/bpy/ops/particle/__init__.pyi +635 -0
  364. fake-bpy-module-20231207/bpy/ops/particle/py.typed +0 -0
  365. fake-bpy-module-20231207/bpy/ops/pose/__init__.pyi +763 -0
  366. fake-bpy-module-20231207/bpy/ops/pose/py.typed +0 -0
  367. fake-bpy-module-20231207/bpy/ops/poselib/__init__.pyi +173 -0
  368. fake-bpy-module-20231207/bpy/ops/poselib/py.typed +0 -0
  369. fake-bpy-module-20231207/bpy/ops/preferences/__init__.pyi +849 -0
  370. fake-bpy-module-20231207/bpy/ops/preferences/py.typed +0 -0
  371. fake-bpy-module-20231207/bpy/ops/ptcache/__init__.pyi +114 -0
  372. fake-bpy-module-20231207/bpy/ops/ptcache/py.typed +0 -0
  373. fake-bpy-module-20231207/bpy/ops/py.typed +0 -0
  374. fake-bpy-module-20231207/bpy/ops/render/__init__.pyi +262 -0
  375. fake-bpy-module-20231207/bpy/ops/render/py.typed +0 -0
  376. fake-bpy-module-20231207/bpy/ops/rigidbody/__init__.pyi +244 -0
  377. fake-bpy-module-20231207/bpy/ops/rigidbody/py.typed +0 -0
  378. fake-bpy-module-20231207/bpy/ops/scene/__init__.pyi +675 -0
  379. fake-bpy-module-20231207/bpy/ops/scene/py.typed +0 -0
  380. fake-bpy-module-20231207/bpy/ops/screen/__init__.pyi +846 -0
  381. fake-bpy-module-20231207/bpy/ops/screen/py.typed +0 -0
  382. fake-bpy-module-20231207/bpy/ops/script/__init__.pyi +60 -0
  383. fake-bpy-module-20231207/bpy/ops/script/py.typed +0 -0
  384. fake-bpy-module-20231207/bpy/ops/sculpt/__init__.pyi +862 -0
  385. fake-bpy-module-20231207/bpy/ops/sculpt/py.typed +0 -0
  386. fake-bpy-module-20231207/bpy/ops/sculpt_curves/__init__.pyi +94 -0
  387. fake-bpy-module-20231207/bpy/ops/sculpt_curves/py.typed +0 -0
  388. fake-bpy-module-20231207/bpy/ops/sequencer/__init__.pyi +2165 -0
  389. fake-bpy-module-20231207/bpy/ops/sequencer/py.typed +0 -0
  390. fake-bpy-module-20231207/bpy/ops/sound/__init__.pyi +395 -0
  391. fake-bpy-module-20231207/bpy/ops/sound/py.typed +0 -0
  392. fake-bpy-module-20231207/bpy/ops/spreadsheet/__init__.pyi +76 -0
  393. fake-bpy-module-20231207/bpy/ops/spreadsheet/py.typed +0 -0
  394. fake-bpy-module-20231207/bpy/ops/surface/__init__.pyi +215 -0
  395. fake-bpy-module-20231207/bpy/ops/surface/py.typed +0 -0
  396. fake-bpy-module-20231207/bpy/ops/text/__init__.pyi +863 -0
  397. fake-bpy-module-20231207/bpy/ops/text/py.typed +0 -0
  398. fake-bpy-module-20231207/bpy/ops/text_editor/__init__.pyi +31 -0
  399. fake-bpy-module-20231207/bpy/ops/text_editor/py.typed +0 -0
  400. fake-bpy-module-20231207/bpy/ops/texture/__init__.pyi +68 -0
  401. fake-bpy-module-20231207/bpy/ops/texture/py.typed +0 -0
  402. fake-bpy-module-20231207/bpy/ops/transform/__init__.pyi +1545 -0
  403. fake-bpy-module-20231207/bpy/ops/transform/py.typed +0 -0
  404. fake-bpy-module-20231207/bpy/ops/ui/__init__.pyi +536 -0
  405. fake-bpy-module-20231207/bpy/ops/ui/py.typed +0 -0
  406. fake-bpy-module-20231207/bpy/ops/uilist/__init__.pyi +74 -0
  407. fake-bpy-module-20231207/bpy/ops/uilist/py.typed +0 -0
  408. fake-bpy-module-20231207/bpy/ops/uv/__init__.pyi +1251 -0
  409. fake-bpy-module-20231207/bpy/ops/uv/py.typed +0 -0
  410. fake-bpy-module-20231207/bpy/ops/view2d/__init__.pyi +329 -0
  411. fake-bpy-module-20231207/bpy/ops/view2d/py.typed +0 -0
  412. fake-bpy-module-20231207/bpy/ops/view3d/__init__.pyi +1392 -0
  413. fake-bpy-module-20231207/bpy/ops/view3d/py.typed +0 -0
  414. fake-bpy-module-20231207/bpy/ops/wm/__init__.pyi +4821 -0
  415. fake-bpy-module-20231207/bpy/ops/wm/py.typed +0 -0
  416. fake-bpy-module-20231207/bpy/ops/workspace/__init__.pyi +115 -0
  417. fake-bpy-module-20231207/bpy/ops/workspace/py.typed +0 -0
  418. fake-bpy-module-20231207/bpy/ops/world/__init__.pyi +19 -0
  419. fake-bpy-module-20231207/bpy/ops/world/py.typed +0 -0
  420. fake-bpy-module-20231207/bpy/path/__init__.pyi +194 -0
  421. fake-bpy-module-20231207/bpy/path/py.typed +0 -0
  422. fake-bpy-module-20231207/bpy/props/__init__.pyi +509 -0
  423. fake-bpy-module-20231207/bpy/props/py.typed +0 -0
  424. fake-bpy-module-20231207/bpy/py.typed +0 -0
  425. fake-bpy-module-20231207/bpy/types/__init__.pyi +131533 -0
  426. fake-bpy-module-20231207/bpy/types/py.typed +0 -0
  427. fake-bpy-module-20231207/bpy/utils/__init__.pyi +429 -0
  428. fake-bpy-module-20231207/bpy/utils/previews/__init__.pyi +73 -0
  429. fake-bpy-module-20231207/bpy/utils/previews/py.typed +0 -0
  430. fake-bpy-module-20231207/bpy/utils/py.typed +0 -0
  431. fake-bpy-module-20231207/bpy/utils/units/__init__.pyi +61 -0
  432. fake-bpy-module-20231207/bpy/utils/units/py.typed +0 -0
  433. fake-bpy-module-20231207/bpy_extras/__init__.pyi +18 -0
  434. fake-bpy-module-20231207/bpy_extras/anim_utils/__init__.pyi +108 -0
  435. fake-bpy-module-20231207/bpy_extras/anim_utils/py.typed +0 -0
  436. fake-bpy-module-20231207/bpy_extras/asset_utils/__init__.pyi +39 -0
  437. fake-bpy-module-20231207/bpy_extras/asset_utils/py.typed +0 -0
  438. fake-bpy-module-20231207/bpy_extras/bmesh_utils/__init__.pyi +20 -0
  439. fake-bpy-module-20231207/bpy_extras/bmesh_utils/py.typed +0 -0
  440. fake-bpy-module-20231207/bpy_extras/extensions/junction_module/__init__.pyi +48 -0
  441. fake-bpy-module-20231207/bpy_extras/extensions/junction_module/py.typed +0 -0
  442. fake-bpy-module-20231207/bpy_extras/extensions/py.typed +0 -0
  443. fake-bpy-module-20231207/bpy_extras/id_map_utils/__init__.pyi +28 -0
  444. fake-bpy-module-20231207/bpy_extras/id_map_utils/py.typed +0 -0
  445. fake-bpy-module-20231207/bpy_extras/image_utils/__init__.pyi +42 -0
  446. fake-bpy-module-20231207/bpy_extras/image_utils/py.typed +0 -0
  447. fake-bpy-module-20231207/bpy_extras/io_utils/__init__.pyi +165 -0
  448. fake-bpy-module-20231207/bpy_extras/io_utils/py.typed +0 -0
  449. fake-bpy-module-20231207/bpy_extras/keyconfig_utils/__init__.pyi +28 -0
  450. fake-bpy-module-20231207/bpy_extras/keyconfig_utils/py.typed +0 -0
  451. fake-bpy-module-20231207/bpy_extras/mesh_utils/__init__.pyi +91 -0
  452. fake-bpy-module-20231207/bpy_extras/mesh_utils/py.typed +0 -0
  453. fake-bpy-module-20231207/bpy_extras/node_shader_utils/__init__.pyi +562 -0
  454. fake-bpy-module-20231207/bpy_extras/node_shader_utils/py.typed +0 -0
  455. fake-bpy-module-20231207/bpy_extras/node_utils/__init__.pyi +28 -0
  456. fake-bpy-module-20231207/bpy_extras/node_utils/py.typed +0 -0
  457. fake-bpy-module-20231207/bpy_extras/object_utils/__init__.pyi +87 -0
  458. fake-bpy-module-20231207/bpy_extras/object_utils/py.typed +0 -0
  459. fake-bpy-module-20231207/bpy_extras/py.typed +0 -0
  460. fake-bpy-module-20231207/bpy_extras/view3d_utils/__init__.pyi +90 -0
  461. fake-bpy-module-20231207/bpy_extras/view3d_utils/py.typed +0 -0
  462. fake-bpy-module-20231207/bpy_extras/wm_utils/progress_report/__init__.pyi +98 -0
  463. fake-bpy-module-20231207/bpy_extras/wm_utils/progress_report/py.typed +0 -0
  464. fake-bpy-module-20231207/bpy_extras/wm_utils/py.typed +0 -0
  465. fake-bpy-module-20231207/bpy_restrict_state/__init__.pyi +24 -0
  466. fake-bpy-module-20231207/bpy_restrict_state/py.typed +0 -0
  467. fake-bpy-module-20231207/bpy_types/__init__.pyi +5189 -0
  468. fake-bpy-module-20231207/bpy_types/py.typed +0 -0
  469. fake-bpy-module-20231207/console_python/__init__.pyi +71 -0
  470. fake-bpy-module-20231207/console_python/py.typed +0 -0
  471. fake-bpy-module-20231207/console_shell/__init__.pyi +44 -0
  472. fake-bpy-module-20231207/console_shell/py.typed +0 -0
  473. fake-bpy-module-20231207/fake_bpy_module.egg-info/PKG-INFO +175 -0
  474. fake-bpy-module-20231207/fake_bpy_module.egg-info/SOURCES.txt +613 -0
  475. fake-bpy-module-20231207/freestyle/chainingiterators/__init__.pyi +306 -0
  476. fake-bpy-module-20231207/freestyle/chainingiterators/py.typed +0 -0
  477. fake-bpy-module-20231207/freestyle/functions/__init__.pyi +1270 -0
  478. fake-bpy-module-20231207/freestyle/functions/py.typed +0 -0
  479. fake-bpy-module-20231207/freestyle/predicates/__init__.pyi +535 -0
  480. fake-bpy-module-20231207/freestyle/predicates/py.typed +0 -0
  481. fake-bpy-module-20231207/freestyle/py.typed +0 -0
  482. fake-bpy-module-20231207/freestyle/shaders/__init__.pyi +872 -0
  483. fake-bpy-module-20231207/freestyle/shaders/py.typed +0 -0
  484. fake-bpy-module-20231207/freestyle/types/__init__.pyi +2407 -0
  485. fake-bpy-module-20231207/freestyle/types/py.typed +0 -0
  486. fake-bpy-module-20231207/freestyle/utils/ContextFunctions/__init__.pyi +127 -0
  487. fake-bpy-module-20231207/freestyle/utils/ContextFunctions/py.typed +0 -0
  488. fake-bpy-module-20231207/freestyle/utils/__init__.pyi +246 -0
  489. fake-bpy-module-20231207/freestyle/utils/py.typed +0 -0
  490. fake-bpy-module-20231207/gpu/capabilities/__init__.pyi +186 -0
  491. fake-bpy-module-20231207/gpu/capabilities/py.typed +0 -0
  492. fake-bpy-module-20231207/gpu/matrix/__init__.pyi +162 -0
  493. fake-bpy-module-20231207/gpu/matrix/py.typed +0 -0
  494. fake-bpy-module-20231207/gpu/platform/__init__.pyi +54 -0
  495. fake-bpy-module-20231207/gpu/platform/py.typed +0 -0
  496. fake-bpy-module-20231207/gpu/py.typed +0 -0
  497. fake-bpy-module-20231207/gpu/select/__init__.pyi +15 -0
  498. fake-bpy-module-20231207/gpu/select/py.typed +0 -0
  499. fake-bpy-module-20231207/gpu/shader/__init__.pyi +38 -0
  500. fake-bpy-module-20231207/gpu/shader/py.typed +0 -0
  501. fake-bpy-module-20231207/gpu/state/__init__.pyi +214 -0
  502. fake-bpy-module-20231207/gpu/state/py.typed +0 -0
  503. fake-bpy-module-20231207/gpu/texture/__init__.pyi +18 -0
  504. fake-bpy-module-20231207/gpu/texture/py.typed +0 -0
  505. fake-bpy-module-20231207/gpu/types/__init__.pyi +698 -0
  506. fake-bpy-module-20231207/gpu/types/py.typed +0 -0
  507. fake-bpy-module-20231207/gpu_extras/batch/__init__.pyi +25 -0
  508. fake-bpy-module-20231207/gpu_extras/batch/py.typed +0 -0
  509. fake-bpy-module-20231207/gpu_extras/presets/__init__.pyi +43 -0
  510. fake-bpy-module-20231207/gpu_extras/presets/py.typed +0 -0
  511. fake-bpy-module-20231207/gpu_extras/py.typed +0 -0
  512. fake-bpy-module-20231207/graphviz_export/__init__.pyi +21 -0
  513. fake-bpy-module-20231207/graphviz_export/py.typed +0 -0
  514. fake-bpy-module-20231207/idprop/py.typed +0 -0
  515. fake-bpy-module-20231207/idprop/types/__init__.pyi +98 -0
  516. fake-bpy-module-20231207/idprop/types/py.typed +0 -0
  517. fake-bpy-module-20231207/imbuf/__init__.pyi +44 -0
  518. fake-bpy-module-20231207/imbuf/py.typed +0 -0
  519. fake-bpy-module-20231207/imbuf/types/__init__.pyi +70 -0
  520. fake-bpy-module-20231207/imbuf/types/py.typed +0 -0
  521. fake-bpy-module-20231207/keyingsets_builtins/__init__.pyi +4028 -0
  522. fake-bpy-module-20231207/keyingsets_builtins/py.typed +0 -0
  523. fake-bpy-module-20231207/keyingsets_utils/__init__.pyi +116 -0
  524. fake-bpy-module-20231207/keyingsets_utils/py.typed +0 -0
  525. fake-bpy-module-20231207/mathutils/__init__.pyi +2917 -0
  526. fake-bpy-module-20231207/mathutils/bvhtree/__init__.pyi +124 -0
  527. fake-bpy-module-20231207/mathutils/bvhtree/py.typed +0 -0
  528. fake-bpy-module-20231207/mathutils/geometry/__init__.pyi +526 -0
  529. fake-bpy-module-20231207/mathutils/geometry/py.typed +0 -0
  530. fake-bpy-module-20231207/mathutils/interpolate/__init__.pyi +16 -0
  531. fake-bpy-module-20231207/mathutils/interpolate/py.typed +0 -0
  532. fake-bpy-module-20231207/mathutils/kdtree/__init__.pyi +77 -0
  533. fake-bpy-module-20231207/mathutils/kdtree/py.typed +0 -0
  534. fake-bpy-module-20231207/mathutils/noise/__init__.pyi +342 -0
  535. fake-bpy-module-20231207/mathutils/noise/py.typed +0 -0
  536. fake-bpy-module-20231207/mathutils/py.typed +0 -0
  537. fake-bpy-module-20231207/nodeitems_builtins/__init__.pyi +69 -0
  538. fake-bpy-module-20231207/nodeitems_builtins/py.typed +0 -0
  539. fake-bpy-module-20231207/nodeitems_utils/__init__.pyi +86 -0
  540. fake-bpy-module-20231207/nodeitems_utils/py.typed +0 -0
  541. fake-bpy-module-20231207/pyproject.toml +43 -0
  542. fake-bpy-module-20231207/rna_info/__init__.pyi +343 -0
  543. fake-bpy-module-20231207/rna_info/py.typed +0 -0
  544. fake-bpy-module-20231207/rna_keymap_ui/__init__.pyi +52 -0
  545. fake-bpy-module-20231207/rna_keymap_ui/py.typed +0 -0
  546. fake-bpy-module-20231207/rna_prop_ui/__init__.pyi +109 -0
  547. fake-bpy-module-20231207/rna_prop_ui/py.typed +0 -0
  548. fake-bpy-module-20231207/rna_xml/__init__.pyi +53 -0
  549. fake-bpy-module-20231207/rna_xml/py.typed +0 -0
  550. fake-bpy-module-20231207/sys_info/__init__.pyi +12 -0
  551. fake-bpy-module-20231207/sys_info/py.typed +0 -0
  552. fake-bpy-module-20231205/PKG-INFO +0 -175
  553. fake-bpy-module-20231205/README.md +0 -149
  554. fake-bpy-module-20231205/addon_utils/__init__.py +0 -84
  555. fake-bpy-module-20231205/animsys_refactor/__init__.py +0 -55
  556. fake-bpy-module-20231205/aud/__init__.py +0 -1190
  557. fake-bpy-module-20231205/bgl/__init__.py +0 -5084
  558. fake-bpy-module-20231205/bl_app_override/__init__.py +0 -31
  559. fake-bpy-module-20231205/bl_app_override/helpers.py +0 -42
  560. fake-bpy-module-20231205/bl_app_template_utils/__init__.py +0 -36
  561. fake-bpy-module-20231205/bl_console_utils/autocomplete/__init__.py +0 -8
  562. fake-bpy-module-20231205/bl_console_utils/autocomplete/complete_calltip.py +0 -44
  563. fake-bpy-module-20231205/bl_console_utils/autocomplete/complete_import.py +0 -28
  564. fake-bpy-module-20231205/bl_console_utils/autocomplete/complete_namespace.py +0 -44
  565. fake-bpy-module-20231205/bl_console_utils/autocomplete/intellisense.py +0 -20
  566. fake-bpy-module-20231205/bl_i18n_utils/__init__.py +0 -11
  567. fake-bpy-module-20231205/bl_i18n_utils/bl_extract_messages.py +0 -124
  568. fake-bpy-module-20231205/bl_i18n_utils/merge_po.py +0 -12
  569. fake-bpy-module-20231205/bl_i18n_utils/settings.py +0 -66
  570. fake-bpy-module-20231205/bl_i18n_utils/utils.py +0 -338
  571. fake-bpy-module-20231205/bl_i18n_utils/utils_cli.py +0 -52
  572. fake-bpy-module-20231205/bl_i18n_utils/utils_languages_menu.py +0 -12
  573. fake-bpy-module-20231205/bl_i18n_utils/utils_rtl.py +0 -20
  574. fake-bpy-module-20231205/bl_keymap_utils/__init__.py +0 -9
  575. fake-bpy-module-20231205/bl_keymap_utils/io.py +0 -76
  576. fake-bpy-module-20231205/bl_keymap_utils/keymap_from_toolbar.py +0 -12
  577. fake-bpy-module-20231205/bl_keymap_utils/keymap_hierarchy.py +0 -12
  578. fake-bpy-module-20231205/bl_keymap_utils/platform_helpers.py +0 -20
  579. fake-bpy-module-20231205/bl_keymap_utils/versioning.py +0 -12
  580. fake-bpy-module-20231205/bl_math/__init__.py +0 -52
  581. fake-bpy-module-20231205/bl_operators/__init__.py +0 -49
  582. fake-bpy-module-20231205/bl_operators/add_mesh_torus.py +0 -231
  583. fake-bpy-module-20231205/bl_operators/anim.py +0 -1291
  584. fake-bpy-module-20231205/bl_operators/assets.py +0 -586
  585. fake-bpy-module-20231205/bl_operators/bmesh/find_adjacent.py +0 -76
  586. fake-bpy-module-20231205/bl_operators/clip.py +0 -1898
  587. fake-bpy-module-20231205/bl_operators/console.py +0 -918
  588. fake-bpy-module-20231205/bl_operators/constraint.py +0 -745
  589. fake-bpy-module-20231205/bl_operators/file.py +0 -560
  590. fake-bpy-module-20231205/bl_operators/freestyle.py +0 -751
  591. fake-bpy-module-20231205/bl_operators/geometry_nodes.py +0 -2553
  592. fake-bpy-module-20231205/bl_operators/image.py +0 -548
  593. fake-bpy-module-20231205/bl_operators/mesh.py +0 -566
  594. fake-bpy-module-20231205/bl_operators/node.py +0 -1814
  595. fake-bpy-module-20231205/bl_operators/object.py +0 -3212
  596. fake-bpy-module-20231205/bl_operators/object_align.py +0 -215
  597. fake-bpy-module-20231205/bl_operators/object_quick_effects.py +0 -777
  598. fake-bpy-module-20231205/bl_operators/object_randomize_transform.py +0 -199
  599. fake-bpy-module-20231205/bl_operators/presets.py +0 -3776
  600. fake-bpy-module-20231205/bl_operators/rigidbody.py +0 -566
  601. fake-bpy-module-20231205/bl_operators/screen_play_rendered_anim.py +0 -192
  602. fake-bpy-module-20231205/bl_operators/sequencer.py +0 -1001
  603. fake-bpy-module-20231205/bl_operators/spreadsheet.py +0 -202
  604. fake-bpy-module-20231205/bl_operators/userpref.py +0 -4701
  605. fake-bpy-module-20231205/bl_operators/uvcalc_follow_active.py +0 -212
  606. fake-bpy-module-20231205/bl_operators/uvcalc_lightmap.py +0 -257
  607. fake-bpy-module-20231205/bl_operators/uvcalc_transform.py +0 -501
  608. fake-bpy-module-20231205/bl_operators/vertexpaint_dirt.py +0 -207
  609. fake-bpy-module-20231205/bl_operators/view3d.py +0 -955
  610. fake-bpy-module-20231205/bl_operators/wm.py +0 -8409
  611. fake-bpy-module-20231205/bl_previews_utils/bl_previews_render.py +0 -60
  612. fake-bpy-module-20231205/bl_rna_utils/data_path.py +0 -25
  613. fake-bpy-module-20231205/bl_text_utils/external_editor.py +0 -12
  614. fake-bpy-module-20231205/bl_ui/__init__.py +0 -706
  615. fake-bpy-module-20231205/bl_ui/asset_shelf.py +0 -202
  616. fake-bpy-module-20231205/bl_ui/generic_ui_list.py +0 -629
  617. fake-bpy-module-20231205/bl_ui/node_add_menu.py +0 -260
  618. fake-bpy-module-20231205/bl_ui/node_add_menu_compositor.py +0 -3739
  619. fake-bpy-module-20231205/bl_ui/node_add_menu_geometry.py +0 -8520
  620. fake-bpy-module-20231205/bl_ui/node_add_menu_shader.py +0 -2139
  621. fake-bpy-module-20231205/bl_ui/node_add_menu_texture.py +0 -1868
  622. fake-bpy-module-20231205/bl_ui/properties_animviz.py +0 -38
  623. fake-bpy-module-20231205/bl_ui/properties_collection.py +0 -1051
  624. fake-bpy-module-20231205/bl_ui/properties_constraint.py +0 -29694
  625. fake-bpy-module-20231205/bl_ui/properties_data_armature.py +0 -2274
  626. fake-bpy-module-20231205/bl_ui/properties_data_bone.py +0 -2087
  627. fake-bpy-module-20231205/bl_ui/properties_data_camera.py +0 -3004
  628. fake-bpy-module-20231205/bl_ui/properties_data_curve.py +0 -3164
  629. fake-bpy-module-20231205/bl_ui/properties_data_curves.py +0 -1247
  630. fake-bpy-module-20231205/bl_ui/properties_data_empty.py +0 -426
  631. fake-bpy-module-20231205/bl_ui/properties_data_gpencil.py +0 -3758
  632. fake-bpy-module-20231205/bl_ui/properties_data_grease_pencil.py +0 -632
  633. fake-bpy-module-20231205/bl_ui/properties_data_lattice.py +0 -637
  634. fake-bpy-module-20231205/bl_ui/properties_data_light.py +0 -2111
  635. fake-bpy-module-20231205/bl_ui/properties_data_lightprobe.py +0 -1264
  636. fake-bpy-module-20231205/bl_ui/properties_data_mesh.py +0 -4052
  637. fake-bpy-module-20231205/bl_ui/properties_data_metaball.py +0 -1047
  638. fake-bpy-module-20231205/bl_ui/properties_data_modifier.py +0 -1741
  639. fake-bpy-module-20231205/bl_ui/properties_data_pointcloud.py +0 -1045
  640. fake-bpy-module-20231205/bl_ui/properties_data_shaderfx.py +0 -214
  641. fake-bpy-module-20231205/bl_ui/properties_data_speaker.py +0 -1056
  642. fake-bpy-module-20231205/bl_ui/properties_data_volume.py +0 -1652
  643. fake-bpy-module-20231205/bl_ui/properties_freestyle.py +0 -5309
  644. fake-bpy-module-20231205/bl_ui/properties_grease_pencil_common.py +0 -2780
  645. fake-bpy-module-20231205/bl_ui/properties_mask_common.py +0 -1554
  646. fake-bpy-module-20231205/bl_ui/properties_material.py +0 -3117
  647. fake-bpy-module-20231205/bl_ui/properties_material_gpencil.py +0 -2086
  648. fake-bpy-module-20231205/bl_ui/properties_object.py +0 -2875
  649. fake-bpy-module-20231205/bl_ui/properties_output.py +0 -3799
  650. fake-bpy-module-20231205/bl_ui/properties_paint_common.py +0 -814
  651. fake-bpy-module-20231205/bl_ui/properties_particle.py +0 -10938
  652. fake-bpy-module-20231205/bl_ui/properties_physics_cloth.py +0 -2984
  653. fake-bpy-module-20231205/bl_ui/properties_physics_common.py +0 -277
  654. fake-bpy-module-20231205/bl_ui/properties_physics_dynamicpaint.py +0 -5431
  655. fake-bpy-module-20231205/bl_ui/properties_physics_field.py +0 -2220
  656. fake-bpy-module-20231205/bl_ui/properties_physics_fluid.py +0 -7296
  657. fake-bpy-module-20231205/bl_ui/properties_physics_geometry_nodes.py +0 -214
  658. fake-bpy-module-20231205/bl_ui/properties_physics_rigidbody.py +0 -1698
  659. fake-bpy-module-20231205/bl_ui/properties_physics_rigidbody_constraint.py +0 -2734
  660. fake-bpy-module-20231205/bl_ui/properties_physics_softbody.py +0 -3198
  661. fake-bpy-module-20231205/bl_ui/properties_render.py +0 -12664
  662. fake-bpy-module-20231205/bl_ui/properties_scene.py +0 -2872
  663. fake-bpy-module-20231205/bl_ui/properties_texture.py +0 -5470
  664. fake-bpy-module-20231205/bl_ui/properties_view_layer.py +0 -3493
  665. fake-bpy-module-20231205/bl_ui/properties_workspace.py +0 -630
  666. fake-bpy-module-20231205/bl_ui/properties_world.py +0 -1478
  667. fake-bpy-module-20231205/bl_ui/space_clip.py +0 -14313
  668. fake-bpy-module-20231205/bl_ui/space_console.py +0 -1221
  669. fake-bpy-module-20231205/bl_ui/space_dopesheet.py +0 -5388
  670. fake-bpy-module-20231205/bl_ui/space_filebrowser.py +0 -5996
  671. fake-bpy-module-20231205/bl_ui/space_graph.py +0 -4053
  672. fake-bpy-module-20231205/bl_ui/space_image.py +0 -14801
  673. fake-bpy-module-20231205/bl_ui/space_info.py +0 -1216
  674. fake-bpy-module-20231205/bl_ui/space_nla.py +0 -3460
  675. fake-bpy-module-20231205/bl_ui/space_node.py +0 -6519
  676. fake-bpy-module-20231205/bl_ui/space_outliner.py +0 -2864
  677. fake-bpy-module-20231205/bl_ui/space_properties.py +0 -575
  678. fake-bpy-module-20231205/bl_ui/space_sequencer.py +0 -15360
  679. fake-bpy-module-20231205/bl_ui/space_spreadsheet.py +0 -226
  680. fake-bpy-module-20231205/bl_ui/space_statusbar.py +0 -190
  681. fake-bpy-module-20231205/bl_ui/space_text.py +0 -3223
  682. fake-bpy-module-20231205/bl_ui/space_time.py +0 -1472
  683. fake-bpy-module-20231205/bl_ui/space_toolsystem_common.py +0 -435
  684. fake-bpy-module-20231205/bl_ui/space_toolsystem_toolbar.py +0 -1671
  685. fake-bpy-module-20231205/bl_ui/space_topbar.py +0 -5296
  686. fake-bpy-module-20231205/bl_ui/space_userpref.py +0 -17826
  687. fake-bpy-module-20231205/bl_ui/space_view3d.py +0 -51846
  688. fake-bpy-module-20231205/bl_ui/space_view3d_toolbar.py +0 -18993
  689. fake-bpy-module-20231205/bl_ui/utils.py +0 -40
  690. fake-bpy-module-20231205/bl_ui_utils/__init__.py +0 -6
  691. fake-bpy-module-20231205/bl_ui_utils/bug_report_url.py +0 -12
  692. fake-bpy-module-20231205/bl_ui_utils/layout.py +0 -12
  693. fake-bpy-module-20231205/blend_render_info/__init__.py +0 -24
  694. fake-bpy-module-20231205/blf/__init__.py +0 -231
  695. fake-bpy-module-20231205/bmesh/__init__.py +0 -51
  696. fake-bpy-module-20231205/bmesh/geometry.py +0 -23
  697. fake-bpy-module-20231205/bmesh/ops.py +0 -1935
  698. fake-bpy-module-20231205/bmesh/types.py +0 -1399
  699. fake-bpy-module-20231205/bmesh/utils.py +0 -207
  700. fake-bpy-module-20231205/bpy/__init__.py +0 -18
  701. fake-bpy-module-20231205/bpy/app/__init__.py +0 -247
  702. fake-bpy-module-20231205/bpy/app/handlers.py +0 -160
  703. fake-bpy-module-20231205/bpy/app/icons.py +0 -42
  704. fake-bpy-module-20231205/bpy/app/timers.py +0 -42
  705. fake-bpy-module-20231205/bpy/app/translations.py +0 -107
  706. fake-bpy-module-20231205/bpy/msgbus.py +0 -40
  707. fake-bpy-module-20231205/bpy/ops/__init__.py +0 -81
  708. fake-bpy-module-20231205/bpy/ops/action.py +0 -723
  709. fake-bpy-module-20231205/bpy/ops/anim.py +0 -978
  710. fake-bpy-module-20231205/bpy/ops/armature.py +0 -858
  711. fake-bpy-module-20231205/bpy/ops/asset.py +0 -339
  712. fake-bpy-module-20231205/bpy/ops/boid.py +0 -127
  713. fake-bpy-module-20231205/bpy/ops/brush.py +0 -171
  714. fake-bpy-module-20231205/bpy/ops/buttons.py +0 -255
  715. fake-bpy-module-20231205/bpy/ops/cachefile.py +0 -241
  716. fake-bpy-module-20231205/bpy/ops/camera.py +0 -60
  717. fake-bpy-module-20231205/bpy/ops/clip.py +0 -1782
  718. fake-bpy-module-20231205/bpy/ops/cloth.py +0 -31
  719. fake-bpy-module-20231205/bpy/ops/collection.py +0 -95
  720. fake-bpy-module-20231205/bpy/ops/console.py +0 -370
  721. fake-bpy-module-20231205/bpy/ops/constraint.py +0 -391
  722. fake-bpy-module-20231205/bpy/ops/curve.py +0 -1052
  723. fake-bpy-module-20231205/bpy/ops/curves.py +0 -259
  724. fake-bpy-module-20231205/bpy/ops/cycles.py +0 -67
  725. fake-bpy-module-20231205/bpy/ops/dpaint.py +0 -87
  726. fake-bpy-module-20231205/bpy/ops/ed.py +0 -276
  727. fake-bpy-module-20231205/bpy/ops/export_anim.py +0 -45
  728. fake-bpy-module-20231205/bpy/ops/export_mesh.py +0 -62
  729. fake-bpy-module-20231205/bpy/ops/export_scene.py +0 -577
  730. fake-bpy-module-20231205/bpy/ops/file.py +0 -787
  731. fake-bpy-module-20231205/bpy/ops/fluid.py +0 -224
  732. fake-bpy-module-20231205/bpy/ops/font.py +0 -537
  733. fake-bpy-module-20231205/bpy/ops/geometry.py +0 -219
  734. fake-bpy-module-20231205/bpy/ops/gizmogroup.py +0 -52
  735. fake-bpy-module-20231205/bpy/ops/gpencil.py +0 -3247
  736. fake-bpy-module-20231205/bpy/ops/graph.py +0 -1392
  737. fake-bpy-module-20231205/bpy/ops/grease_pencil.py +0 -724
  738. fake-bpy-module-20231205/bpy/ops/image.py +0 -1261
  739. fake-bpy-module-20231205/bpy/ops/import_anim.py +0 -58
  740. fake-bpy-module-20231205/bpy/ops/import_curve.py +0 -26
  741. fake-bpy-module-20231205/bpy/ops/import_mesh.py +0 -50
  742. fake-bpy-module-20231205/bpy/ops/import_scene.py +0 -191
  743. fake-bpy-module-20231205/bpy/ops/info.py +0 -140
  744. fake-bpy-module-20231205/bpy/ops/lattice.py +0 -153
  745. fake-bpy-module-20231205/bpy/ops/marker.py +0 -238
  746. fake-bpy-module-20231205/bpy/ops/mask.py +0 -747
  747. fake-bpy-module-20231205/bpy/ops/material.py +0 -47
  748. fake-bpy-module-20231205/bpy/ops/mball.py +0 -168
  749. fake-bpy-module-20231205/bpy/ops/mesh.py +0 -4168
  750. fake-bpy-module-20231205/bpy/ops/nla.py +0 -756
  751. fake-bpy-module-20231205/bpy/ops/node.py +0 -1894
  752. fake-bpy-module-20231205/bpy/ops/object.py +0 -5343
  753. fake-bpy-module-20231205/bpy/ops/outliner.py +0 -1172
  754. fake-bpy-module-20231205/bpy/ops/paint.py +0 -1067
  755. fake-bpy-module-20231205/bpy/ops/paintcurve.py +0 -148
  756. fake-bpy-module-20231205/bpy/ops/palette.py +0 -123
  757. fake-bpy-module-20231205/bpy/ops/particle.py +0 -635
  758. fake-bpy-module-20231205/bpy/ops/pose.py +0 -763
  759. fake-bpy-module-20231205/bpy/ops/poselib.py +0 -173
  760. fake-bpy-module-20231205/bpy/ops/preferences.py +0 -849
  761. fake-bpy-module-20231205/bpy/ops/ptcache.py +0 -114
  762. fake-bpy-module-20231205/bpy/ops/render.py +0 -262
  763. fake-bpy-module-20231205/bpy/ops/rigidbody.py +0 -244
  764. fake-bpy-module-20231205/bpy/ops/scene.py +0 -675
  765. fake-bpy-module-20231205/bpy/ops/screen.py +0 -846
  766. fake-bpy-module-20231205/bpy/ops/script.py +0 -60
  767. fake-bpy-module-20231205/bpy/ops/sculpt.py +0 -862
  768. fake-bpy-module-20231205/bpy/ops/sculpt_curves.py +0 -94
  769. fake-bpy-module-20231205/bpy/ops/sequencer.py +0 -2165
  770. fake-bpy-module-20231205/bpy/ops/sound.py +0 -395
  771. fake-bpy-module-20231205/bpy/ops/spreadsheet.py +0 -76
  772. fake-bpy-module-20231205/bpy/ops/surface.py +0 -215
  773. fake-bpy-module-20231205/bpy/ops/text.py +0 -863
  774. fake-bpy-module-20231205/bpy/ops/text_editor.py +0 -31
  775. fake-bpy-module-20231205/bpy/ops/texture.py +0 -68
  776. fake-bpy-module-20231205/bpy/ops/transform.py +0 -1545
  777. fake-bpy-module-20231205/bpy/ops/ui.py +0 -536
  778. fake-bpy-module-20231205/bpy/ops/uilist.py +0 -74
  779. fake-bpy-module-20231205/bpy/ops/uv.py +0 -1251
  780. fake-bpy-module-20231205/bpy/ops/view2d.py +0 -329
  781. fake-bpy-module-20231205/bpy/ops/view3d.py +0 -1392
  782. fake-bpy-module-20231205/bpy/ops/wm.py +0 -4821
  783. fake-bpy-module-20231205/bpy/ops/workspace.py +0 -115
  784. fake-bpy-module-20231205/bpy/ops/world.py +0 -19
  785. fake-bpy-module-20231205/bpy/path.py +0 -194
  786. fake-bpy-module-20231205/bpy/props.py +0 -509
  787. fake-bpy-module-20231205/bpy/types.py +0 -131806
  788. fake-bpy-module-20231205/bpy/utils/__init__.py +0 -429
  789. fake-bpy-module-20231205/bpy/utils/previews.py +0 -73
  790. fake-bpy-module-20231205/bpy/utils/units.py +0 -61
  791. fake-bpy-module-20231205/bpy_extras/__init__.py +0 -18
  792. fake-bpy-module-20231205/bpy_extras/anim_utils.py +0 -108
  793. fake-bpy-module-20231205/bpy_extras/asset_utils.py +0 -39
  794. fake-bpy-module-20231205/bpy_extras/bmesh_utils.py +0 -20
  795. fake-bpy-module-20231205/bpy_extras/extensions/junction_module.py +0 -48
  796. fake-bpy-module-20231205/bpy_extras/id_map_utils.py +0 -28
  797. fake-bpy-module-20231205/bpy_extras/image_utils.py +0 -42
  798. fake-bpy-module-20231205/bpy_extras/io_utils.py +0 -165
  799. fake-bpy-module-20231205/bpy_extras/keyconfig_utils.py +0 -28
  800. fake-bpy-module-20231205/bpy_extras/mesh_utils.py +0 -91
  801. fake-bpy-module-20231205/bpy_extras/node_shader_utils.py +0 -562
  802. fake-bpy-module-20231205/bpy_extras/node_utils.py +0 -28
  803. fake-bpy-module-20231205/bpy_extras/object_utils.py +0 -87
  804. fake-bpy-module-20231205/bpy_extras/view3d_utils.py +0 -90
  805. fake-bpy-module-20231205/bpy_extras/wm_utils/progress_report.py +0 -98
  806. fake-bpy-module-20231205/bpy_restrict_state/__init__.py +0 -24
  807. fake-bpy-module-20231205/bpy_types/__init__.py +0 -5189
  808. fake-bpy-module-20231205/console_python/__init__.py +0 -71
  809. fake-bpy-module-20231205/console_shell/__init__.py +0 -44
  810. fake-bpy-module-20231205/fake_bpy_module.egg-info/PKG-INFO +0 -175
  811. fake-bpy-module-20231205/fake_bpy_module.egg-info/SOURCES.txt +0 -359
  812. fake-bpy-module-20231205/freestyle/chainingiterators.py +0 -306
  813. fake-bpy-module-20231205/freestyle/functions.py +0 -1270
  814. fake-bpy-module-20231205/freestyle/predicates.py +0 -535
  815. fake-bpy-module-20231205/freestyle/shaders.py +0 -872
  816. fake-bpy-module-20231205/freestyle/types.py +0 -2409
  817. fake-bpy-module-20231205/freestyle/utils/ContextFunctions.py +0 -127
  818. fake-bpy-module-20231205/freestyle/utils/__init__.py +0 -246
  819. fake-bpy-module-20231205/gpu/capabilities.py +0 -186
  820. fake-bpy-module-20231205/gpu/matrix.py +0 -162
  821. fake-bpy-module-20231205/gpu/platform.py +0 -54
  822. fake-bpy-module-20231205/gpu/select.py +0 -15
  823. fake-bpy-module-20231205/gpu/shader.py +0 -38
  824. fake-bpy-module-20231205/gpu/state.py +0 -214
  825. fake-bpy-module-20231205/gpu/texture.py +0 -18
  826. fake-bpy-module-20231205/gpu/types.py +0 -698
  827. fake-bpy-module-20231205/gpu_extras/batch.py +0 -25
  828. fake-bpy-module-20231205/gpu_extras/presets.py +0 -43
  829. fake-bpy-module-20231205/graphviz_export/__init__.py +0 -21
  830. fake-bpy-module-20231205/idprop/types.py +0 -98
  831. fake-bpy-module-20231205/imbuf/__init__.py +0 -44
  832. fake-bpy-module-20231205/imbuf/types.py +0 -70
  833. fake-bpy-module-20231205/keyingsets_builtins/__init__.py +0 -4028
  834. fake-bpy-module-20231205/keyingsets_utils/__init__.py +0 -116
  835. fake-bpy-module-20231205/mathutils/__init__.py +0 -2917
  836. fake-bpy-module-20231205/mathutils/bvhtree.py +0 -124
  837. fake-bpy-module-20231205/mathutils/geometry.py +0 -526
  838. fake-bpy-module-20231205/mathutils/interpolate.py +0 -16
  839. fake-bpy-module-20231205/mathutils/kdtree.py +0 -77
  840. fake-bpy-module-20231205/mathutils/noise.py +0 -342
  841. fake-bpy-module-20231205/nodeitems_builtins/__init__.py +0 -69
  842. fake-bpy-module-20231205/nodeitems_utils/__init__.py +0 -86
  843. fake-bpy-module-20231205/pyproject.toml +0 -43
  844. fake-bpy-module-20231205/rna_info/__init__.py +0 -343
  845. fake-bpy-module-20231205/rna_keymap_ui/__init__.py +0 -52
  846. fake-bpy-module-20231205/rna_prop_ui/__init__.py +0 -109
  847. fake-bpy-module-20231205/rna_xml/__init__.py +0 -53
  848. fake-bpy-module-20231205/sys_info/__init__.py +0 -12
  849. {fake-bpy-module-20231205 → fake-bpy-module-20231207}/addon_utils/py.typed +0 -0
  850. {fake-bpy-module-20231205 → fake-bpy-module-20231207}/animsys_refactor/py.typed +0 -0
  851. {fake-bpy-module-20231205 → fake-bpy-module-20231207}/aud/py.typed +0 -0
  852. {fake-bpy-module-20231205 → fake-bpy-module-20231207}/bgl/py.typed +0 -0
  853. {fake-bpy-module-20231205/bl_app_override → fake-bpy-module-20231207/bl_app_override/helpers}/py.typed +0 -0
  854. {fake-bpy-module-20231205/bl_app_template_utils → fake-bpy-module-20231207/bl_app_override}/py.typed +0 -0
  855. {fake-bpy-module-20231205/bl_console_utils/autocomplete → fake-bpy-module-20231207/bl_app_template_utils}/py.typed +0 -0
  856. /fake-bpy-module-20231205/bl_console_utils/__init__.py → /fake-bpy-module-20231207/bl_console_utils/__init__.pyi +0 -0
  857. {fake-bpy-module-20231205/bl_console_utils → fake-bpy-module-20231207/bl_console_utils/autocomplete/complete_calltip}/py.typed +0 -0
  858. {fake-bpy-module-20231205/bl_i18n_utils → fake-bpy-module-20231207/bl_console_utils/autocomplete/complete_import}/py.typed +0 -0
  859. {fake-bpy-module-20231205/bl_keymap_utils → fake-bpy-module-20231207/bl_console_utils/autocomplete/complete_namespace}/py.typed +0 -0
  860. {fake-bpy-module-20231205/bl_math → fake-bpy-module-20231207/bl_console_utils/autocomplete/intellisense}/py.typed +0 -0
  861. {fake-bpy-module-20231205/bl_operators/bmesh → fake-bpy-module-20231207/bl_console_utils/autocomplete}/py.typed +0 -0
  862. {fake-bpy-module-20231205/bl_operators → fake-bpy-module-20231207/bl_console_utils}/py.typed +0 -0
  863. {fake-bpy-module-20231205/bl_previews_utils → fake-bpy-module-20231207/bl_i18n_utils/bl_extract_messages}/py.typed +0 -0
  864. {fake-bpy-module-20231205/bl_rna_utils → fake-bpy-module-20231207/bl_i18n_utils/merge_po}/py.typed +0 -0
  865. {fake-bpy-module-20231205/bl_text_utils → fake-bpy-module-20231207/bl_i18n_utils}/py.typed +0 -0
  866. {fake-bpy-module-20231205/bl_ui → fake-bpy-module-20231207/bl_i18n_utils/settings}/py.typed +0 -0
  867. {fake-bpy-module-20231205/bl_ui_utils → fake-bpy-module-20231207/bl_i18n_utils/utils}/py.typed +0 -0
  868. {fake-bpy-module-20231205/blend_render_info → fake-bpy-module-20231207/bl_i18n_utils/utils_cli}/py.typed +0 -0
  869. {fake-bpy-module-20231205/blf → fake-bpy-module-20231207/bl_i18n_utils/utils_languages_menu}/py.typed +0 -0
  870. {fake-bpy-module-20231205/bmesh → fake-bpy-module-20231207/bl_i18n_utils/utils_rtl}/py.typed +0 -0
  871. {fake-bpy-module-20231205/bpy/app → fake-bpy-module-20231207/bl_keymap_utils/io}/py.typed +0 -0
  872. {fake-bpy-module-20231205/bpy/ops → fake-bpy-module-20231207/bl_keymap_utils/keymap_from_toolbar}/py.typed +0 -0
  873. {fake-bpy-module-20231205/bpy → fake-bpy-module-20231207/bl_keymap_utils/keymap_hierarchy}/py.typed +0 -0
  874. {fake-bpy-module-20231205/bpy/utils → fake-bpy-module-20231207/bl_keymap_utils/platform_helpers}/py.typed +0 -0
  875. {fake-bpy-module-20231205/bpy_extras/extensions → fake-bpy-module-20231207/bl_keymap_utils}/py.typed +0 -0
  876. {fake-bpy-module-20231205/bpy_extras → fake-bpy-module-20231207/bl_keymap_utils/versioning}/py.typed +0 -0
  877. {fake-bpy-module-20231205/bpy_extras/wm_utils → fake-bpy-module-20231207/bl_math}/py.typed +0 -0
  878. {fake-bpy-module-20231205/bpy_restrict_state → fake-bpy-module-20231207/bl_operators/add_mesh_torus}/py.typed +0 -0
  879. {fake-bpy-module-20231205/bpy_types → fake-bpy-module-20231207/bl_operators/anim}/py.typed +0 -0
  880. {fake-bpy-module-20231205/console_python → fake-bpy-module-20231207/bl_operators/assets}/py.typed +0 -0
  881. /fake-bpy-module-20231205/bl_operators/bmesh/__init__.py → /fake-bpy-module-20231207/bl_operators/bmesh/__init__.pyi +0 -0
  882. {fake-bpy-module-20231205/console_shell → fake-bpy-module-20231207/bl_operators/bmesh/find_adjacent}/py.typed +0 -0
  883. {fake-bpy-module-20231205/freestyle → fake-bpy-module-20231207/bl_operators/bmesh}/py.typed +0 -0
  884. {fake-bpy-module-20231205/freestyle/utils → fake-bpy-module-20231207/bl_operators/clip}/py.typed +0 -0
  885. {fake-bpy-module-20231205/gpu → fake-bpy-module-20231207/bl_operators/console}/py.typed +0 -0
  886. {fake-bpy-module-20231205/gpu_extras → fake-bpy-module-20231207/bl_operators/constraint}/py.typed +0 -0
  887. {fake-bpy-module-20231205/graphviz_export → fake-bpy-module-20231207/bl_operators/file}/py.typed +0 -0
  888. {fake-bpy-module-20231205/idprop → fake-bpy-module-20231207/bl_operators/freestyle}/py.typed +0 -0
  889. {fake-bpy-module-20231205/imbuf → fake-bpy-module-20231207/bl_operators/geometry_nodes}/py.typed +0 -0
  890. {fake-bpy-module-20231205/keyingsets_builtins → fake-bpy-module-20231207/bl_operators/image}/py.typed +0 -0
  891. {fake-bpy-module-20231205/keyingsets_utils → fake-bpy-module-20231207/bl_operators/mesh}/py.typed +0 -0
  892. {fake-bpy-module-20231205/mathutils → fake-bpy-module-20231207/bl_operators/node}/py.typed +0 -0
  893. {fake-bpy-module-20231205/nodeitems_builtins → fake-bpy-module-20231207/bl_operators/object}/py.typed +0 -0
  894. {fake-bpy-module-20231205/nodeitems_utils → fake-bpy-module-20231207/bl_operators/object_align}/py.typed +0 -0
  895. {fake-bpy-module-20231205/rna_info → fake-bpy-module-20231207/bl_operators/object_quick_effects}/py.typed +0 -0
  896. {fake-bpy-module-20231205/rna_keymap_ui → fake-bpy-module-20231207/bl_operators/object_randomize_transform}/py.typed +0 -0
  897. {fake-bpy-module-20231205/rna_prop_ui → fake-bpy-module-20231207/bl_operators/presets}/py.typed +0 -0
  898. {fake-bpy-module-20231205/rna_xml → fake-bpy-module-20231207/bl_operators}/py.typed +0 -0
  899. {fake-bpy-module-20231205/sys_info → fake-bpy-module-20231207/bl_operators/rigidbody}/py.typed +0 -0
  900. /fake-bpy-module-20231205/bl_previews_utils/__init__.py → /fake-bpy-module-20231207/bl_previews_utils/__init__.pyi +0 -0
  901. /fake-bpy-module-20231205/bl_rna_utils/__init__.py → /fake-bpy-module-20231207/bl_rna_utils/__init__.pyi +0 -0
  902. /fake-bpy-module-20231205/bl_text_utils/__init__.py → /fake-bpy-module-20231207/bl_text_utils/__init__.pyi +0 -0
  903. /fake-bpy-module-20231205/bpy_extras/extensions/__init__.py → /fake-bpy-module-20231207/bpy_extras/extensions/__init__.pyi +0 -0
  904. /fake-bpy-module-20231205/bpy_extras/wm_utils/__init__.py → /fake-bpy-module-20231207/bpy_extras/wm_utils/__init__.pyi +0 -0
  905. {fake-bpy-module-20231205 → fake-bpy-module-20231207}/fake_bpy_module.egg-info/dependency_links.txt +0 -0
  906. {fake-bpy-module-20231205 → fake-bpy-module-20231207}/fake_bpy_module.egg-info/top_level.txt +0 -0
  907. /fake-bpy-module-20231205/freestyle/__init__.py → /fake-bpy-module-20231207/freestyle/__init__.pyi +0 -0
  908. /fake-bpy-module-20231205/gpu/__init__.py → /fake-bpy-module-20231207/gpu/__init__.pyi +0 -0
  909. /fake-bpy-module-20231205/gpu_extras/__init__.py → /fake-bpy-module-20231207/gpu_extras/__init__.pyi +0 -0
  910. /fake-bpy-module-20231205/idprop/__init__.py → /fake-bpy-module-20231207/idprop/__init__.pyi +0 -0
  911. {fake-bpy-module-20231205 → fake-bpy-module-20231207}/setup.cfg +0 -0
  912. {fake-bpy-module-20231205 → fake-bpy-module-20231207}/setup.py +0 -0
@@ -0,0 +1,175 @@
1
+ Metadata-Version: 2.1
2
+ Name: fake-bpy-module
3
+ Version: 20231207
4
+ Summary: Collection of the fake Blender Python API module for the code completion.
5
+ Author: nutti
6
+ Author-email: nutti.metro@gmail.com
7
+ Maintainer: nutti
8
+ Maintainer-email: nutti.metro@gmail.com
9
+ Project-URL: Homepage, https://github.com/nutti/fake-bpy-module
10
+ Project-URL: Documentation, https://github.com/nutti/fake-bpy-module/blob/master/README.md
11
+ Project-URL: Source, https://github.com/nutti/fake-bpy-module
12
+ Project-URL: Download, https://github.com/nutti/fake-bpy-module/releases
13
+ Project-URL: Bug Tracker, https://github.com/nutti/fake-bpy-module/issues
14
+ Project-URL: Release Notes, https://github.com/nutti/fake-bpy-module/blob/master/CHANGELOG.md
15
+ Platform: Windows
16
+ Platform: Linux
17
+ Platform: Mac OS-X
18
+ Classifier: Topic :: Multimedia :: Graphics :: 3D Modeling
19
+ Classifier: Topic :: Multimedia :: Graphics :: 3D Rendering
20
+ Classifier: Topic :: Text Editors :: Integrated Development Environments (IDE)
21
+ Classifier: Programming Language :: Python
22
+ Classifier: Programming Language :: Python :: 3
23
+ Classifier: License :: OSI Approved :: MIT License
24
+ Requires-Python: >=3.8
25
+ Description-Content-Type: text/markdown
26
+
27
+ # Fake Blender Python API module collection: fake-bpy-module
28
+
29
+ fake-bpy-module is the collections of the fake Blender Python API modules for
30
+ the code completion in commonly used IDEs.
31
+
32
+ Note: The similar project for Blender Game Engine (BGE) is available on
33
+ [fake-bge-module](https://github.com/nutti/fake-bge-module) which targets
34
+ [UPBGE](https://upbge.org/).
35
+
36
+ ![fake-bpy-module Thumbnail](docs/images/fake-bpy-module_thumbnail.png)
37
+
38
+ *To realize the long support of this project, your support is helpful.*
39
+ *You can support the development of this project via*
40
+ **[GitHub Sponsors](https://github.com/sponsors/nutti)**.
41
+ *See [the contribution document](CONTRIBUTING.md) for the detail of*
42
+ *the support.*
43
+
44
+ ## Requirements
45
+
46
+ fake-bpy-module uses typing module and type hints which are available from
47
+ Python 3.8. Check your Python version is >= 3.8.
48
+
49
+ ## Install
50
+
51
+ fake-bpy-module can be installed via a pip package, or pre-generated modules.
52
+ You can also generate and install modules manually.
53
+
54
+ ### Install via pip package
55
+
56
+ fake-bpy-module is registered to PyPI.
57
+ You can install it as a pip package.
58
+
59
+ #### Install a latest package
60
+
61
+ If you install fake-bpy-module for Blender latest build (master branch daily
62
+ build powered by [nutti/blender-daily-build](https://github.com/nutti/blender-daily-build)),
63
+ run below command.
64
+
65
+ ```sh
66
+ pip install fake-bpy-module
67
+ ```
68
+
69
+ or, specify version "latest".
70
+
71
+ ```sh
72
+ pip install fake-bpy-module-latest
73
+ ```
74
+
75
+ #### Install a version specific package
76
+
77
+ If you want to install a version specific package, run below command.
78
+
79
+ ```sh
80
+ pip install fake-bpy-module-<version>
81
+ ```
82
+
83
+ If you install fake-bpy-module for Blender 2.93, run below command.
84
+
85
+ ```sh
86
+ pip install fake-bpy-module-2.93
87
+ ```
88
+
89
+ *Note: For PyCharm users, change the value `idea.max.intellisense.filesize` in
90
+ `idea.properties` file to more than 2600 because some modules have the issue of
91
+ being too big for intelliSense to work.*
92
+
93
+ ##### Supported Blender Version
94
+
95
+ |Version|PyPI|
96
+ |---|---|
97
+ |2.78|[https://pypi.org/project/fake-bpy-module-2.78/](https://pypi.org/project/fake-bpy-module-2.78/)|
98
+ |2.79|[https://pypi.org/project/fake-bpy-module-2.79/](https://pypi.org/project/fake-bpy-module-2.79/)|
99
+ |2.80|[https://pypi.org/project/fake-bpy-module-2.80/](https://pypi.org/project/fake-bpy-module-2.80/)|
100
+ |2.81|[https://pypi.org/project/fake-bpy-module-2.81/](https://pypi.org/project/fake-bpy-module-2.81/)|
101
+ |2.82|[https://pypi.org/project/fake-bpy-module-2.82/](https://pypi.org/project/fake-bpy-module-2.82/)|
102
+ |2.83|[https://pypi.org/project/fake-bpy-module-2.83/](https://pypi.org/project/fake-bpy-module-2.83/)|
103
+ |2.90|[https://pypi.org/project/fake-bpy-module-2.90/](https://pypi.org/project/fake-bpy-module-2.90/)|
104
+ |2.91|[https://pypi.org/project/fake-bpy-module-2.91/](https://pypi.org/project/fake-bpy-module-2.91/)|
105
+ |2.92|[https://pypi.org/project/fake-bpy-module-2.92/](https://pypi.org/project/fake-bpy-module-2.92/)|
106
+ |2.93|[https://pypi.org/project/fake-bpy-module-2.93/](https://pypi.org/project/fake-bpy-module-2.93/)|
107
+ |3.0|[https://pypi.org/project/fake-bpy-module-3.0/](https://pypi.org/project/fake-bpy-module-3.0/)|
108
+ |3.1|[https://pypi.org/project/fake-bpy-module-3.1/](https://pypi.org/project/fake-bpy-module-3.1/)|
109
+ |3.2|[https://pypi.org/project/fake-bpy-module-3.2/](https://pypi.org/project/fake-bpy-module-3.2/)|
110
+ |3.3|[https://pypi.org/project/fake-bpy-module-3.3/](https://pypi.org/project/fake-bpy-module-3.3/)|
111
+ |3.4|[https://pypi.org/project/fake-bpy-module-3.4/](https://pypi.org/project/fake-bpy-module-3.4/)|
112
+ |3.5|[https://pypi.org/project/fake-bpy-module-3.5/](https://pypi.org/project/fake-bpy-module-3.5/)|
113
+ |3.6|[https://pypi.org/project/fake-bpy-module-3.6/](https://pypi.org/project/fake-bpy-module-3.6/)|
114
+ |4.0|[https://pypi.org/project/fake-bpy-module-4.0/](https://pypi.org/project/fake-bpy-module-4.0/)|
115
+ |latest|[https://pypi.org/project/fake-bpy-module/](https://pypi.org/project/fake-bpy-module/)|
116
+ ||[https://pypi.org/project/fake-bpy-module-latest/](https://pypi.org/project/fake-bpy-module-latest/)|
117
+
118
+ ### Install via pre-generated modules
119
+
120
+ Download Pre-generated modules from [Release page](https://github.com/nutti/fake-bpy-module/releases).
121
+
122
+ The process of installation via pre-generated modules is different by IDE.
123
+ See the installation processes as follows for detail.
124
+
125
+ * [PyCharm](docs/setup_pycharm.md)
126
+ * [Visual Studio Code](docs/setup_visual_studio_code.md)
127
+ * [All Text Editor (Install as Python module)](docs/setup_all_text_editor.md)
128
+
129
+ ### Generate Modules Manually
130
+
131
+ You can also generate modules manually.
132
+ See [Generate Module](docs/generate_modules.md) for detail.
133
+
134
+ ## Change Log
135
+
136
+ See [CHANGELOG.md](CHANGELOG.md)
137
+
138
+ ## Bug report / Feature request / Disscussions
139
+
140
+ If you want to report bug, request features or discuss about this project, see
141
+ [ISSUES.md](ISSUES.md).
142
+
143
+ [fake-bpy-module](https://blender.chat/channel/fake-bpy-module) channel is
144
+ available on [blender.chat](https://blender.chat/).
145
+ The timely discussion and release announcement about fake-bpy-module will be
146
+ made in this channel.
147
+
148
+ Note: Registration of blender.chat is required for accessing fake-bpy-module channel.
149
+
150
+ ## Contribution
151
+
152
+ If you want to contribute to this project, see [CONTRIBUTING.md](CONTRIBUTING.md).
153
+
154
+ ## Project Authors
155
+
156
+ ### Owner
157
+
158
+ [**@nutti**](https://github.com/nutti)
159
+
160
+ Indie Game/Application Developer.
161
+ Especially, I spend most time to improve Blender and Unreal Game Engine via
162
+ providing the extensions.
163
+
164
+ Support via [GitHub Sponsors](https://github.com/sponsors/nutti)
165
+
166
+ * CONTACTS: [Twitter](https://twitter.com/nutti__)
167
+ * WEBSITE: [Japanese Only](https://colorful-pico.net/)
168
+
169
+ ### Contributors
170
+
171
+ * [**@grische**](https://github.com/grische)
172
+ * [**@echantry**](https://github.com/echantry)
173
+ * [**@kant**](https://github.com/kant)
174
+ * [**@theoryshaw**](https://github.com/theoryshaw)
175
+ * [**@espiondev**](https://github.com/espiondev)
@@ -0,0 +1,149 @@
1
+ # Fake Blender Python API module collection: fake-bpy-module
2
+
3
+ fake-bpy-module is the collections of the fake Blender Python API modules for
4
+ the code completion in commonly used IDEs.
5
+
6
+ Note: The similar project for Blender Game Engine (BGE) is available on
7
+ [fake-bge-module](https://github.com/nutti/fake-bge-module) which targets
8
+ [UPBGE](https://upbge.org/).
9
+
10
+ ![fake-bpy-module Thumbnail](docs/images/fake-bpy-module_thumbnail.png)
11
+
12
+ *To realize the long support of this project, your support is helpful.*
13
+ *You can support the development of this project via*
14
+ **[GitHub Sponsors](https://github.com/sponsors/nutti)**.
15
+ *See [the contribution document](CONTRIBUTING.md) for the detail of*
16
+ *the support.*
17
+
18
+ ## Requirements
19
+
20
+ fake-bpy-module uses typing module and type hints which are available from
21
+ Python 3.8. Check your Python version is >= 3.8.
22
+
23
+ ## Install
24
+
25
+ fake-bpy-module can be installed via a pip package, or pre-generated modules.
26
+ You can also generate and install modules manually.
27
+
28
+ ### Install via pip package
29
+
30
+ fake-bpy-module is registered to PyPI.
31
+ You can install it as a pip package.
32
+
33
+ #### Install a latest package
34
+
35
+ If you install fake-bpy-module for Blender latest build (master branch daily
36
+ build powered by [nutti/blender-daily-build](https://github.com/nutti/blender-daily-build)),
37
+ run below command.
38
+
39
+ ```sh
40
+ pip install fake-bpy-module
41
+ ```
42
+
43
+ or, specify version "latest".
44
+
45
+ ```sh
46
+ pip install fake-bpy-module-latest
47
+ ```
48
+
49
+ #### Install a version specific package
50
+
51
+ If you want to install a version specific package, run below command.
52
+
53
+ ```sh
54
+ pip install fake-bpy-module-<version>
55
+ ```
56
+
57
+ If you install fake-bpy-module for Blender 2.93, run below command.
58
+
59
+ ```sh
60
+ pip install fake-bpy-module-2.93
61
+ ```
62
+
63
+ *Note: For PyCharm users, change the value `idea.max.intellisense.filesize` in
64
+ `idea.properties` file to more than 2600 because some modules have the issue of
65
+ being too big for intelliSense to work.*
66
+
67
+ ##### Supported Blender Version
68
+
69
+ |Version|PyPI|
70
+ |---|---|
71
+ |2.78|[https://pypi.org/project/fake-bpy-module-2.78/](https://pypi.org/project/fake-bpy-module-2.78/)|
72
+ |2.79|[https://pypi.org/project/fake-bpy-module-2.79/](https://pypi.org/project/fake-bpy-module-2.79/)|
73
+ |2.80|[https://pypi.org/project/fake-bpy-module-2.80/](https://pypi.org/project/fake-bpy-module-2.80/)|
74
+ |2.81|[https://pypi.org/project/fake-bpy-module-2.81/](https://pypi.org/project/fake-bpy-module-2.81/)|
75
+ |2.82|[https://pypi.org/project/fake-bpy-module-2.82/](https://pypi.org/project/fake-bpy-module-2.82/)|
76
+ |2.83|[https://pypi.org/project/fake-bpy-module-2.83/](https://pypi.org/project/fake-bpy-module-2.83/)|
77
+ |2.90|[https://pypi.org/project/fake-bpy-module-2.90/](https://pypi.org/project/fake-bpy-module-2.90/)|
78
+ |2.91|[https://pypi.org/project/fake-bpy-module-2.91/](https://pypi.org/project/fake-bpy-module-2.91/)|
79
+ |2.92|[https://pypi.org/project/fake-bpy-module-2.92/](https://pypi.org/project/fake-bpy-module-2.92/)|
80
+ |2.93|[https://pypi.org/project/fake-bpy-module-2.93/](https://pypi.org/project/fake-bpy-module-2.93/)|
81
+ |3.0|[https://pypi.org/project/fake-bpy-module-3.0/](https://pypi.org/project/fake-bpy-module-3.0/)|
82
+ |3.1|[https://pypi.org/project/fake-bpy-module-3.1/](https://pypi.org/project/fake-bpy-module-3.1/)|
83
+ |3.2|[https://pypi.org/project/fake-bpy-module-3.2/](https://pypi.org/project/fake-bpy-module-3.2/)|
84
+ |3.3|[https://pypi.org/project/fake-bpy-module-3.3/](https://pypi.org/project/fake-bpy-module-3.3/)|
85
+ |3.4|[https://pypi.org/project/fake-bpy-module-3.4/](https://pypi.org/project/fake-bpy-module-3.4/)|
86
+ |3.5|[https://pypi.org/project/fake-bpy-module-3.5/](https://pypi.org/project/fake-bpy-module-3.5/)|
87
+ |3.6|[https://pypi.org/project/fake-bpy-module-3.6/](https://pypi.org/project/fake-bpy-module-3.6/)|
88
+ |4.0|[https://pypi.org/project/fake-bpy-module-4.0/](https://pypi.org/project/fake-bpy-module-4.0/)|
89
+ |latest|[https://pypi.org/project/fake-bpy-module/](https://pypi.org/project/fake-bpy-module/)|
90
+ ||[https://pypi.org/project/fake-bpy-module-latest/](https://pypi.org/project/fake-bpy-module-latest/)|
91
+
92
+ ### Install via pre-generated modules
93
+
94
+ Download Pre-generated modules from [Release page](https://github.com/nutti/fake-bpy-module/releases).
95
+
96
+ The process of installation via pre-generated modules is different by IDE.
97
+ See the installation processes as follows for detail.
98
+
99
+ * [PyCharm](docs/setup_pycharm.md)
100
+ * [Visual Studio Code](docs/setup_visual_studio_code.md)
101
+ * [All Text Editor (Install as Python module)](docs/setup_all_text_editor.md)
102
+
103
+ ### Generate Modules Manually
104
+
105
+ You can also generate modules manually.
106
+ See [Generate Module](docs/generate_modules.md) for detail.
107
+
108
+ ## Change Log
109
+
110
+ See [CHANGELOG.md](CHANGELOG.md)
111
+
112
+ ## Bug report / Feature request / Disscussions
113
+
114
+ If you want to report bug, request features or discuss about this project, see
115
+ [ISSUES.md](ISSUES.md).
116
+
117
+ [fake-bpy-module](https://blender.chat/channel/fake-bpy-module) channel is
118
+ available on [blender.chat](https://blender.chat/).
119
+ The timely discussion and release announcement about fake-bpy-module will be
120
+ made in this channel.
121
+
122
+ Note: Registration of blender.chat is required for accessing fake-bpy-module channel.
123
+
124
+ ## Contribution
125
+
126
+ If you want to contribute to this project, see [CONTRIBUTING.md](CONTRIBUTING.md).
127
+
128
+ ## Project Authors
129
+
130
+ ### Owner
131
+
132
+ [**@nutti**](https://github.com/nutti)
133
+
134
+ Indie Game/Application Developer.
135
+ Especially, I spend most time to improve Blender and Unreal Game Engine via
136
+ providing the extensions.
137
+
138
+ Support via [GitHub Sponsors](https://github.com/sponsors/nutti)
139
+
140
+ * CONTACTS: [Twitter](https://twitter.com/nutti__)
141
+ * WEBSITE: [Japanese Only](https://colorful-pico.net/)
142
+
143
+ ### Contributors
144
+
145
+ * [**@grische**](https://github.com/grische)
146
+ * [**@echantry**](https://github.com/echantry)
147
+ * [**@kant**](https://github.com/kant)
148
+ * [**@theoryshaw**](https://github.com/theoryshaw)
149
+ * [**@espiondev**](https://github.com/espiondev)
@@ -0,0 +1,84 @@
1
+ import sys
2
+ import typing
3
+
4
+ GenericType = typing.TypeVar("GenericType")
5
+
6
+
7
+ class _ext_global:
8
+ idmap: typing.Any
9
+ ''' '''
10
+
11
+ module_handle: typing.Any
12
+ ''' '''
13
+
14
+
15
+ def check(module_name):
16
+ '''
17
+
18
+ '''
19
+
20
+ ...
21
+
22
+
23
+ def disable(module_name, default_set, handle_error):
24
+ '''
25
+
26
+ '''
27
+
28
+ ...
29
+
30
+
31
+ def disable_all():
32
+ '''
33
+
34
+ '''
35
+
36
+ ...
37
+
38
+
39
+ def enable(module_name, default_set, persistent, handle_error):
40
+ '''
41
+
42
+ '''
43
+
44
+ ...
45
+
46
+
47
+ def module_bl_info(mod, info_basis):
48
+ '''
49
+
50
+ '''
51
+
52
+ ...
53
+
54
+
55
+ def modules(module_cache, refresh):
56
+ '''
57
+
58
+ '''
59
+
60
+ ...
61
+
62
+
63
+ def modules_refresh(module_cache):
64
+ '''
65
+
66
+ '''
67
+
68
+ ...
69
+
70
+
71
+ def paths():
72
+ '''
73
+
74
+ '''
75
+
76
+ ...
77
+
78
+
79
+ def reset_all(reload_scripts):
80
+ '''
81
+
82
+ '''
83
+
84
+ ...
@@ -0,0 +1,55 @@
1
+ import sys
2
+ import typing
3
+
4
+ GenericType = typing.TypeVar("GenericType")
5
+
6
+
7
+ class DataPathBuilder:
8
+ data_path: typing.Any
9
+ ''' '''
10
+
11
+ def resolve(self, real_base, rna_update_from_map, fcurve, log):
12
+ '''
13
+
14
+ '''
15
+ ...
16
+
17
+
18
+ def anim_data_actions(anim_data):
19
+ '''
20
+
21
+ '''
22
+
23
+ ...
24
+
25
+
26
+ def classes_recursive(base_type, clss):
27
+ '''
28
+
29
+ '''
30
+
31
+ ...
32
+
33
+
34
+ def find_path_new(id_data, data_path, rna_update_from_map, fcurve, log):
35
+ '''
36
+
37
+ '''
38
+
39
+ ...
40
+
41
+
42
+ def id_iter():
43
+ '''
44
+
45
+ '''
46
+
47
+ ...
48
+
49
+
50
+ def update_data_paths(rna_update, log):
51
+ '''
52
+
53
+ '''
54
+
55
+ ...