dlubal.api 2.10.10__tar.gz → 2.10.10.post1__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.

Potentially problematic release.


This version of dlubal.api might be problematic. Click here for more details.

Files changed (751) hide show
  1. {dlubal_api-2.10.10 → dlubal_api-2.10.10.post1}/PKG-INFO +1 -1
  2. dlubal_api-2.10.10.post1/dlubal/api/common/__init__.py +5 -0
  3. dlubal_api-2.10.10.post1/dlubal/api/common/common_messages_pb2.py +76 -0
  4. dlubal_api-2.10.10.post1/dlubal/api/common/common_messages_pb2.pyi +218 -0
  5. dlubal_api-2.10.10.post1/dlubal/api/common/common_pb2.py +46 -0
  6. dlubal_api-2.10.10.post1/dlubal/api/common/common_pb2.pyi +57 -0
  7. dlubal_api-2.10.10.post1/dlubal/api/common/connection.py +248 -0
  8. dlubal_api-2.10.10.post1/dlubal/api/common/exceptions.py +12 -0
  9. dlubal_api-2.10.10.post1/dlubal/api/common/import_export/__init__.py +2 -0
  10. dlubal_api-2.10.10.post1/dlubal/api/common/import_export/export_attributes_pb2.py +38 -0
  11. dlubal_api-2.10.10.post1/dlubal/api/common/import_export/export_attributes_pb2.pyi +13 -0
  12. dlubal_api-2.10.10.post1/dlubal/api/common/import_export/import_attributes_pb2.py +36 -0
  13. dlubal_api-2.10.10.post1/dlubal/api/common/import_export/import_attributes_pb2.pyi +9 -0
  14. dlubal_api-2.10.10.post1/dlubal/api/common/model_id_pb2.py +38 -0
  15. dlubal_api-2.10.10.post1/dlubal/api/common/model_id_pb2.pyi +17 -0
  16. dlubal_api-2.10.10.post1/dlubal/api/common/packing.py +121 -0
  17. dlubal_api-2.10.10.post1/dlubal/api/common/table.py +36 -0
  18. dlubal_api-2.10.10.post1/dlubal/api/common/table_data_pb2.py +39 -0
  19. dlubal_api-2.10.10.post1/dlubal/api/common/table_data_pb2.pyi +21 -0
  20. dlubal_api-2.10.10.post1/dlubal/api/rfem/__init__.py +52 -0
  21. dlubal_api-2.10.10.post1/dlubal/api/rfem/all_pb2.py +36 -0
  22. dlubal_api-2.10.10.post1/dlubal/api/rfem/all_pb2.pyi +9 -0
  23. dlubal_api-2.10.10.post1/dlubal/api/rfem/aluminum_design_objects/__init__.py +2 -0
  24. dlubal_api-2.10.10.post1/dlubal/api/rfem/aluminum_design_objects/aluminum_design_sls_configuration_pb2.py +36 -0
  25. dlubal_api-2.10.10.post1/dlubal/api/rfem/aluminum_design_objects/aluminum_design_sls_configuration_pb2.pyi +30 -0
  26. dlubal_api-2.10.10.post1/dlubal/api/rfem/aluminum_design_objects/aluminum_design_uls_configuration_pb2.py +36 -0
  27. dlubal_api-2.10.10.post1/dlubal/api/rfem/aluminum_design_objects/aluminum_design_uls_configuration_pb2.pyi +30 -0
  28. dlubal_api-2.10.10.post1/dlubal/api/rfem/application.py +572 -0
  29. dlubal_api-2.10.10.post1/dlubal/api/rfem/application_pb2.py +51 -0
  30. dlubal_api-2.10.10.post1/dlubal/api/rfem/application_pb2.pyi +42 -0
  31. dlubal_api-2.10.10.post1/dlubal/api/rfem/application_pb2_grpc.py +1469 -0
  32. dlubal_api-2.10.10.post1/dlubal/api/rfem/base_data_pb2.py +102 -0
  33. dlubal_api-2.10.10.post1/dlubal/api/rfem/base_data_pb2.pyi +2412 -0
  34. dlubal_api-2.10.10.post1/dlubal/api/rfem/beam_panels/__init__.py +3 -0
  35. dlubal_api-2.10.10.post1/dlubal/api/rfem/beam_panels/beam_to_beam_connector_pb2.py +38 -0
  36. dlubal_api-2.10.10.post1/dlubal/api/rfem/beam_panels/beam_to_beam_connector_pb2.pyi +39 -0
  37. dlubal_api-2.10.10.post1/dlubal/api/rfem/beam_panels/inner_studs_structure_pb2.py +38 -0
  38. dlubal_api-2.10.10.post1/dlubal/api/rfem/beam_panels/inner_studs_structure_pb2.pyi +53 -0
  39. dlubal_api-2.10.10.post1/dlubal/api/rfem/beam_panels/sheathing_to_beam_connector_pb2.py +44 -0
  40. dlubal_api-2.10.10.post1/dlubal/api/rfem/beam_panels/sheathing_to_beam_connector_pb2.pyi +91 -0
  41. dlubal_api-2.10.10.post1/dlubal/api/rfem/building_model/__init__.py +4 -0
  42. dlubal_api-2.10.10.post1/dlubal/api/rfem/building_model/building_story_pb2.py +54 -0
  43. dlubal_api-2.10.10.post1/dlubal/api/rfem/building_model/building_story_pb2.pyi +142 -0
  44. dlubal_api-2.10.10.post1/dlubal/api/rfem/building_model/deep_beam_pb2.py +43 -0
  45. dlubal_api-2.10.10.post1/dlubal/api/rfem/building_model/deep_beam_pb2.pyi +94 -0
  46. dlubal_api-2.10.10.post1/dlubal/api/rfem/building_model/floor_set_pb2.py +39 -0
  47. dlubal_api-2.10.10.post1/dlubal/api/rfem/building_model/floor_set_pb2.pyi +58 -0
  48. dlubal_api-2.10.10.post1/dlubal/api/rfem/building_model/shear_wall_pb2.py +43 -0
  49. dlubal_api-2.10.10.post1/dlubal/api/rfem/building_model/shear_wall_pb2.pyi +90 -0
  50. dlubal_api-2.10.10.post1/dlubal/api/rfem/cad/__init__.py +1 -0
  51. dlubal_api-2.10.10.post1/dlubal/api/rfem/cad/layout_pb2.py +40 -0
  52. dlubal_api-2.10.10.post1/dlubal/api/rfem/cad/layout_pb2.pyi +58 -0
  53. dlubal_api-2.10.10.post1/dlubal/api/rfem/calculation_diagrams/__init__.py +1 -0
  54. dlubal_api-2.10.10.post1/dlubal/api/rfem/calculation_diagrams/calculation_diagram_pb2.py +53 -0
  55. dlubal_api-2.10.10.post1/dlubal/api/rfem/calculation_diagrams/calculation_diagram_pb2.pyi +1706 -0
  56. dlubal_api-2.10.10.post1/dlubal/api/rfem/components/__init__.py +2 -0
  57. dlubal_api-2.10.10.post1/dlubal/api/rfem/components/component_pb2.py +42 -0
  58. dlubal_api-2.10.10.post1/dlubal/api/rfem/components/component_pb2.pyi +80 -0
  59. dlubal_api-2.10.10.post1/dlubal/api/rfem/components/component_serie_pb2.py +38 -0
  60. dlubal_api-2.10.10.post1/dlubal/api/rfem/components/component_serie_pb2.pyi +54 -0
  61. dlubal_api-2.10.10.post1/dlubal/api/rfem/concrete_design_objects/__init__.py +4 -0
  62. dlubal_api-2.10.10.post1/dlubal/api/rfem/concrete_design_objects/concrete_design_fr_configuration_pb2.py +36 -0
  63. dlubal_api-2.10.10.post1/dlubal/api/rfem/concrete_design_objects/concrete_design_fr_configuration_pb2.pyi +58 -0
  64. dlubal_api-2.10.10.post1/dlubal/api/rfem/concrete_design_objects/concrete_design_seismic_configuration_pb2.py +36 -0
  65. dlubal_api-2.10.10.post1/dlubal/api/rfem/concrete_design_objects/concrete_design_seismic_configuration_pb2.pyi +58 -0
  66. dlubal_api-2.10.10.post1/dlubal/api/rfem/concrete_design_objects/concrete_design_sls_configuration_pb2.py +36 -0
  67. dlubal_api-2.10.10.post1/dlubal/api/rfem/concrete_design_objects/concrete_design_sls_configuration_pb2.pyi +46 -0
  68. dlubal_api-2.10.10.post1/dlubal/api/rfem/concrete_design_objects/concrete_design_uls_configuration_pb2.py +36 -0
  69. dlubal_api-2.10.10.post1/dlubal/api/rfem/concrete_design_objects/concrete_design_uls_configuration_pb2.pyi +46 -0
  70. dlubal_api-2.10.10.post1/dlubal/api/rfem/construction_stages/__init__.py +1 -0
  71. dlubal_api-2.10.10.post1/dlubal/api/rfem/construction_stages/construction_stage_pb2.py +70 -0
  72. dlubal_api-2.10.10.post1/dlubal/api/rfem/construction_stages/construction_stage_pb2.pyi +439 -0
  73. dlubal_api-2.10.10.post1/dlubal/api/rfem/craneway_design_objects/__init__.py +2 -0
  74. dlubal_api-2.10.10.post1/dlubal/api/rfem/craneway_design_objects/craneway_sls_configuration_pb2.py +36 -0
  75. dlubal_api-2.10.10.post1/dlubal/api/rfem/craneway_design_objects/craneway_sls_configuration_pb2.pyi +24 -0
  76. dlubal_api-2.10.10.post1/dlubal/api/rfem/craneway_design_objects/craneway_uls_configuration_pb2.py +36 -0
  77. dlubal_api-2.10.10.post1/dlubal/api/rfem/craneway_design_objects/craneway_uls_configuration_pb2.pyi +24 -0
  78. dlubal_api-2.10.10.post1/dlubal/api/rfem/dynamic_loads/__init__.py +3 -0
  79. dlubal_api-2.10.10.post1/dlubal/api/rfem/dynamic_loads/accelerogram_pb2.py +42 -0
  80. dlubal_api-2.10.10.post1/dlubal/api/rfem/dynamic_loads/accelerogram_pb2.pyi +67 -0
  81. dlubal_api-2.10.10.post1/dlubal/api/rfem/dynamic_loads/response_spectrum_pb2.py +44 -0
  82. dlubal_api-2.10.10.post1/dlubal/api/rfem/dynamic_loads/response_spectrum_pb2.pyi +89 -0
  83. dlubal_api-2.10.10.post1/dlubal/api/rfem/dynamic_loads/time_diagram_pb2.py +46 -0
  84. dlubal_api-2.10.10.post1/dlubal/api/rfem/dynamic_loads/time_diagram_pb2.pyi +83 -0
  85. dlubal_api-2.10.10.post1/dlubal/api/rfem/foundation_design_objects/__init__.py +2 -0
  86. dlubal_api-2.10.10.post1/dlubal/api/rfem/foundation_design_objects/concrete_design_configuration_pb2.py +36 -0
  87. dlubal_api-2.10.10.post1/dlubal/api/rfem/foundation_design_objects/concrete_design_configuration_pb2.pyi +24 -0
  88. dlubal_api-2.10.10.post1/dlubal/api/rfem/foundation_design_objects/geotechnical_design_configuration_pb2.py +36 -0
  89. dlubal_api-2.10.10.post1/dlubal/api/rfem/foundation_design_objects/geotechnical_design_configuration_pb2.pyi +24 -0
  90. dlubal_api-2.10.10.post1/dlubal/api/rfem/geotechnical_analysis/__init__.py +2 -0
  91. dlubal_api-2.10.10.post1/dlubal/api/rfem/geotechnical_analysis/borehole_pb2.py +43 -0
  92. dlubal_api-2.10.10.post1/dlubal/api/rfem/geotechnical_analysis/borehole_pb2.pyi +70 -0
  93. dlubal_api-2.10.10.post1/dlubal/api/rfem/geotechnical_analysis/soil_massif_pb2.py +47 -0
  94. dlubal_api-2.10.10.post1/dlubal/api/rfem/geotechnical_analysis/soil_massif_pb2.pyi +114 -0
  95. dlubal_api-2.10.10.post1/dlubal/api/rfem/glass_design_objects/__init__.py +2 -0
  96. dlubal_api-2.10.10.post1/dlubal/api/rfem/glass_design_objects/glass_design_sls_configuration_pb2.py +36 -0
  97. dlubal_api-2.10.10.post1/dlubal/api/rfem/glass_design_objects/glass_design_sls_configuration_pb2.pyi +34 -0
  98. dlubal_api-2.10.10.post1/dlubal/api/rfem/glass_design_objects/glass_design_uls_configuration_pb2.py +36 -0
  99. dlubal_api-2.10.10.post1/dlubal/api/rfem/glass_design_objects/glass_design_uls_configuration_pb2.pyi +34 -0
  100. dlubal_api-2.10.10.post1/dlubal/api/rfem/global_parameters/__init__.py +1 -0
  101. dlubal_api-2.10.10.post1/dlubal/api/rfem/global_parameters/global_parameter_pb2.py +40 -0
  102. dlubal_api-2.10.10.post1/dlubal/api/rfem/global_parameters/global_parameter_pb2.pyi +292 -0
  103. dlubal_api-2.10.10.post1/dlubal/api/rfem/guide_objects/__init__.py +14 -0
  104. dlubal_api-2.10.10.post1/dlubal/api/rfem/guide_objects/building_grid_pb2.py +53 -0
  105. dlubal_api-2.10.10.post1/dlubal/api/rfem/guide_objects/building_grid_pb2.pyi +211 -0
  106. dlubal_api-2.10.10.post1/dlubal/api/rfem/guide_objects/clipping_box_pb2.py +36 -0
  107. dlubal_api-2.10.10.post1/dlubal/api/rfem/guide_objects/clipping_box_pb2.pyi +13 -0
  108. dlubal_api-2.10.10.post1/dlubal/api/rfem/guide_objects/clipping_plane_pb2.py +45 -0
  109. dlubal_api-2.10.10.post1/dlubal/api/rfem/guide_objects/clipping_plane_pb2.pyi +113 -0
  110. dlubal_api-2.10.10.post1/dlubal/api/rfem/guide_objects/coordinate_system_pb2.py +41 -0
  111. dlubal_api-2.10.10.post1/dlubal/api/rfem/guide_objects/coordinate_system_pb2.pyi +91 -0
  112. dlubal_api-2.10.10.post1/dlubal/api/rfem/guide_objects/dimension_pb2.py +73 -0
  113. dlubal_api-2.10.10.post1/dlubal/api/rfem/guide_objects/dimension_pb2.pyi +350 -0
  114. dlubal_api-2.10.10.post1/dlubal/api/rfem/guide_objects/dxf_file_model_object_pb2.py +41 -0
  115. dlubal_api-2.10.10.post1/dlubal/api/rfem/guide_objects/dxf_file_model_object_pb2.pyi +119 -0
  116. dlubal_api-2.10.10.post1/dlubal/api/rfem/guide_objects/dxf_model_object_pb2.py +36 -0
  117. dlubal_api-2.10.10.post1/dlubal/api/rfem/guide_objects/dxf_model_object_pb2.pyi +15 -0
  118. dlubal_api-2.10.10.post1/dlubal/api/rfem/guide_objects/group_of_object_selections_pb2.py +36 -0
  119. dlubal_api-2.10.10.post1/dlubal/api/rfem/guide_objects/group_of_object_selections_pb2.pyi +28 -0
  120. dlubal_api-2.10.10.post1/dlubal/api/rfem/guide_objects/guideline_pb2.py +42 -0
  121. dlubal_api-2.10.10.post1/dlubal/api/rfem/guide_objects/guideline_pb2.pyi +90 -0
  122. dlubal_api-2.10.10.post1/dlubal/api/rfem/guide_objects/layer_group_pb2.py +36 -0
  123. dlubal_api-2.10.10.post1/dlubal/api/rfem/guide_objects/layer_group_pb2.pyi +22 -0
  124. dlubal_api-2.10.10.post1/dlubal/api/rfem/guide_objects/layer_pb2.py +36 -0
  125. dlubal_api-2.10.10.post1/dlubal/api/rfem/guide_objects/layer_pb2.pyi +25 -0
  126. dlubal_api-2.10.10.post1/dlubal/api/rfem/guide_objects/note_pb2.py +45 -0
  127. dlubal_api-2.10.10.post1/dlubal/api/rfem/guide_objects/note_pb2.pyi +125 -0
  128. dlubal_api-2.10.10.post1/dlubal/api/rfem/guide_objects/object_snap_pb2.py +38 -0
  129. dlubal_api-2.10.10.post1/dlubal/api/rfem/guide_objects/object_snap_pb2.pyi +84 -0
  130. dlubal_api-2.10.10.post1/dlubal/api/rfem/guide_objects/visual_object_pb2.py +43 -0
  131. dlubal_api-2.10.10.post1/dlubal/api/rfem/guide_objects/visual_object_pb2.pyi +127 -0
  132. dlubal_api-2.10.10.post1/dlubal/api/rfem/ifc_objects/__init__.py +2 -0
  133. dlubal_api-2.10.10.post1/dlubal/api/rfem/ifc_objects/ifc_file_model_object_pb2.py +46 -0
  134. dlubal_api-2.10.10.post1/dlubal/api/rfem/ifc_objects/ifc_file_model_object_pb2.pyi +90 -0
  135. dlubal_api-2.10.10.post1/dlubal/api/rfem/ifc_objects/ifc_model_object_pb2.py +36 -0
  136. dlubal_api-2.10.10.post1/dlubal/api/rfem/ifc_objects/ifc_model_object_pb2.pyi +19 -0
  137. dlubal_api-2.10.10.post1/dlubal/api/rfem/imperfections/__init__.py +5 -0
  138. dlubal_api-2.10.10.post1/dlubal/api/rfem/imperfections/imperfection_case_pb2.py +56 -0
  139. dlubal_api-2.10.10.post1/dlubal/api/rfem/imperfections/imperfection_case_pb2.pyi +197 -0
  140. dlubal_api-2.10.10.post1/dlubal/api/rfem/imperfections/member_imperfection_pb2.py +50 -0
  141. dlubal_api-2.10.10.post1/dlubal/api/rfem/imperfections/member_imperfection_pb2.pyi +201 -0
  142. dlubal_api-2.10.10.post1/dlubal/api/rfem/imperfections/member_set_imperfection_pb2.py +50 -0
  143. dlubal_api-2.10.10.post1/dlubal/api/rfem/imperfections/member_set_imperfection_pb2.pyi +199 -0
  144. dlubal_api-2.10.10.post1/dlubal/api/rfem/imperfections/surface_imperfection_pb2.py +40 -0
  145. dlubal_api-2.10.10.post1/dlubal/api/rfem/imperfections/surface_imperfection_pb2.pyi +53 -0
  146. dlubal_api-2.10.10.post1/dlubal/api/rfem/imperfections/surface_set_imperfection_pb2.py +40 -0
  147. dlubal_api-2.10.10.post1/dlubal/api/rfem/imperfections/surface_set_imperfection_pb2.pyi +53 -0
  148. dlubal_api-2.10.10.post1/dlubal/api/rfem/load_wizards/__init__.py +9 -0
  149. dlubal_api-2.10.10.post1/dlubal/api/rfem/load_wizards/import_support_reactions_pb2.py +42 -0
  150. dlubal_api-2.10.10.post1/dlubal/api/rfem/load_wizards/import_support_reactions_pb2.pyi +73 -0
  151. dlubal_api-2.10.10.post1/dlubal/api/rfem/load_wizards/load_model_pb2.py +40 -0
  152. dlubal_api-2.10.10.post1/dlubal/api/rfem/load_wizards/load_model_pb2.pyi +37 -0
  153. dlubal_api-2.10.10.post1/dlubal/api/rfem/load_wizards/member_loads_from_area_load_pb2.py +42 -0
  154. dlubal_api-2.10.10.post1/dlubal/api/rfem/load_wizards/member_loads_from_area_load_pb2.pyi +77 -0
  155. dlubal_api-2.10.10.post1/dlubal/api/rfem/load_wizards/member_loads_from_free_line_load_pb2.py +45 -0
  156. dlubal_api-2.10.10.post1/dlubal/api/rfem/load_wizards/member_loads_from_free_line_load_pb2.pyi +110 -0
  157. dlubal_api-2.10.10.post1/dlubal/api/rfem/load_wizards/moving_load_pb2.py +48 -0
  158. dlubal_api-2.10.10.post1/dlubal/api/rfem/load_wizards/moving_load_pb2.pyi +660 -0
  159. dlubal_api-2.10.10.post1/dlubal/api/rfem/load_wizards/snow_load_pb2.py +58 -0
  160. dlubal_api-2.10.10.post1/dlubal/api/rfem/load_wizards/snow_load_pb2.pyi +837 -0
  161. dlubal_api-2.10.10.post1/dlubal/api/rfem/load_wizards/wind_load_pb2.py +54 -0
  162. dlubal_api-2.10.10.post1/dlubal/api/rfem/load_wizards/wind_load_pb2.pyi +817 -0
  163. dlubal_api-2.10.10.post1/dlubal/api/rfem/load_wizards/wind_profile_pb2.py +46 -0
  164. dlubal_api-2.10.10.post1/dlubal/api/rfem/load_wizards/wind_profile_pb2.pyi +755 -0
  165. dlubal_api-2.10.10.post1/dlubal/api/rfem/load_wizards/wind_simulation_pb2.py +55 -0
  166. dlubal_api-2.10.10.post1/dlubal/api/rfem/load_wizards/wind_simulation_pb2.pyi +146 -0
  167. dlubal_api-2.10.10.post1/dlubal/api/rfem/loading/__init__.py +16 -0
  168. dlubal_api-2.10.10.post1/dlubal/api/rfem/loading/action_combination_pb2.py +48 -0
  169. dlubal_api-2.10.10.post1/dlubal/api/rfem/loading/action_combination_pb2.pyi +153 -0
  170. dlubal_api-2.10.10.post1/dlubal/api/rfem/loading/action_pb2.py +46 -0
  171. dlubal_api-2.10.10.post1/dlubal/api/rfem/loading/action_pb2.pyi +681 -0
  172. dlubal_api-2.10.10.post1/dlubal/api/rfem/loading/combination_wizard_pb2.py +45 -0
  173. dlubal_api-2.10.10.post1/dlubal/api/rfem/loading/combination_wizard_pb2.pyi +88 -0
  174. dlubal_api-2.10.10.post1/dlubal/api/rfem/loading/design_situation_pb2.py +47 -0
  175. dlubal_api-2.10.10.post1/dlubal/api/rfem/loading/design_situation_pb2.pyi +1188 -0
  176. dlubal_api-2.10.10.post1/dlubal/api/rfem/loading/load_case_pb2.py +90 -0
  177. dlubal_api-2.10.10.post1/dlubal/api/rfem/loading/load_case_pb2.pyi +1221 -0
  178. dlubal_api-2.10.10.post1/dlubal/api/rfem/loading/load_combination_pb2.py +61 -0
  179. dlubal_api-2.10.10.post1/dlubal/api/rfem/loading/load_combination_pb2.pyi +358 -0
  180. dlubal_api-2.10.10.post1/dlubal/api/rfem/loading/modal_analysis_settings_pb2.py +46 -0
  181. dlubal_api-2.10.10.post1/dlubal/api/rfem/loading/modal_analysis_settings_pb2.pyi +104 -0
  182. dlubal_api-2.10.10.post1/dlubal/api/rfem/loading/optimization_settings_pb2.py +44 -0
  183. dlubal_api-2.10.10.post1/dlubal/api/rfem/loading/optimization_settings_pb2.pyi +91 -0
  184. dlubal_api-2.10.10.post1/dlubal/api/rfem/loading/pushover_analysis_settings_pb2.py +38 -0
  185. dlubal_api-2.10.10.post1/dlubal/api/rfem/loading/pushover_analysis_settings_pb2.pyi +50 -0
  186. dlubal_api-2.10.10.post1/dlubal/api/rfem/loading/relationship_between_load_cases_pb2.py +44 -0
  187. dlubal_api-2.10.10.post1/dlubal/api/rfem/loading/relationship_between_load_cases_pb2.pyi +64 -0
  188. dlubal_api-2.10.10.post1/dlubal/api/rfem/loading/result_combination_pb2.py +55 -0
  189. dlubal_api-2.10.10.post1/dlubal/api/rfem/loading/result_combination_pb2.pyi +284 -0
  190. dlubal_api-2.10.10.post1/dlubal/api/rfem/loading/spectral_analysis_settings_pb2.py +46 -0
  191. dlubal_api-2.10.10.post1/dlubal/api/rfem/loading/spectral_analysis_settings_pb2.pyi +82 -0
  192. dlubal_api-2.10.10.post1/dlubal/api/rfem/loading/stability_analysis_settings_pb2.py +44 -0
  193. dlubal_api-2.10.10.post1/dlubal/api/rfem/loading/stability_analysis_settings_pb2.pyi +114 -0
  194. dlubal_api-2.10.10.post1/dlubal/api/rfem/loading/static_analysis_settings_pb2.py +46 -0
  195. dlubal_api-2.10.10.post1/dlubal/api/rfem/loading/static_analysis_settings_pb2.pyi +154 -0
  196. dlubal_api-2.10.10.post1/dlubal/api/rfem/loading/time_history_analysis_settings_pb2.py +48 -0
  197. dlubal_api-2.10.10.post1/dlubal/api/rfem/loading/time_history_analysis_settings_pb2.pyi +116 -0
  198. dlubal_api-2.10.10.post1/dlubal/api/rfem/loading/wind_simulation_analysis_settings_pb2.py +48 -0
  199. dlubal_api-2.10.10.post1/dlubal/api/rfem/loading/wind_simulation_analysis_settings_pb2.pyi +150 -0
  200. dlubal_api-2.10.10.post1/dlubal/api/rfem/loads/__init__.py +18 -0
  201. dlubal_api-2.10.10.post1/dlubal/api/rfem/loads/additional_foundation_load_pb2.py +41 -0
  202. dlubal_api-2.10.10.post1/dlubal/api/rfem/loads/additional_foundation_load_pb2.pyi +80 -0
  203. dlubal_api-2.10.10.post1/dlubal/api/rfem/loads/free_circular_load_pb2.py +42 -0
  204. dlubal_api-2.10.10.post1/dlubal/api/rfem/loads/free_circular_load_pb2.pyi +97 -0
  205. dlubal_api-2.10.10.post1/dlubal/api/rfem/loads/free_concentrated_load_pb2.py +42 -0
  206. dlubal_api-2.10.10.post1/dlubal/api/rfem/loads/free_concentrated_load_pb2.pyi +81 -0
  207. dlubal_api-2.10.10.post1/dlubal/api/rfem/loads/free_line_load_pb2.py +42 -0
  208. dlubal_api-2.10.10.post1/dlubal/api/rfem/loads/free_line_load_pb2.pyi +101 -0
  209. dlubal_api-2.10.10.post1/dlubal/api/rfem/loads/free_polygon_load_pb2.py +46 -0
  210. dlubal_api-2.10.10.post1/dlubal/api/rfem/loads/free_polygon_load_pb2.pyi +123 -0
  211. dlubal_api-2.10.10.post1/dlubal/api/rfem/loads/free_rectangular_load_pb2.py +53 -0
  212. dlubal_api-2.10.10.post1/dlubal/api/rfem/loads/free_rectangular_load_pb2.pyi +194 -0
  213. dlubal_api-2.10.10.post1/dlubal/api/rfem/loads/imposed_line_deformation_pb2.py +37 -0
  214. dlubal_api-2.10.10.post1/dlubal/api/rfem/loads/imposed_line_deformation_pb2.pyi +47 -0
  215. dlubal_api-2.10.10.post1/dlubal/api/rfem/loads/imposed_nodal_deformation_pb2.py +37 -0
  216. dlubal_api-2.10.10.post1/dlubal/api/rfem/loads/imposed_nodal_deformation_pb2.pyi +43 -0
  217. dlubal_api-2.10.10.post1/dlubal/api/rfem/loads/line_load_pb2.py +49 -0
  218. dlubal_api-2.10.10.post1/dlubal/api/rfem/loads/line_load_pb2.pyi +168 -0
  219. dlubal_api-2.10.10.post1/dlubal/api/rfem/loads/line_set_load_pb2.py +49 -0
  220. dlubal_api-2.10.10.post1/dlubal/api/rfem/loads/line_set_load_pb2.pyi +168 -0
  221. dlubal_api-2.10.10.post1/dlubal/api/rfem/loads/member_load_pb2.py +69 -0
  222. dlubal_api-2.10.10.post1/dlubal/api/rfem/loads/member_load_pb2.pyi +402 -0
  223. dlubal_api-2.10.10.post1/dlubal/api/rfem/loads/member_set_load_pb2.py +69 -0
  224. dlubal_api-2.10.10.post1/dlubal/api/rfem/loads/member_set_load_pb2.pyi +400 -0
  225. dlubal_api-2.10.10.post1/dlubal/api/rfem/loads/nodal_load_pb2.py +47 -0
  226. dlubal_api-2.10.10.post1/dlubal/api/rfem/loads/nodal_load_pb2.pyi +204 -0
  227. dlubal_api-2.10.10.post1/dlubal/api/rfem/loads/opening_load_pb2.py +43 -0
  228. dlubal_api-2.10.10.post1/dlubal/api/rfem/loads/opening_load_pb2.pyi +82 -0
  229. dlubal_api-2.10.10.post1/dlubal/api/rfem/loads/solid_load_pb2.py +53 -0
  230. dlubal_api-2.10.10.post1/dlubal/api/rfem/loads/solid_load_pb2.pyi +172 -0
  231. dlubal_api-2.10.10.post1/dlubal/api/rfem/loads/solid_set_load_pb2.py +53 -0
  232. dlubal_api-2.10.10.post1/dlubal/api/rfem/loads/solid_set_load_pb2.pyi +172 -0
  233. dlubal_api-2.10.10.post1/dlubal/api/rfem/loads/surface_load_pb2.py +59 -0
  234. dlubal_api-2.10.10.post1/dlubal/api/rfem/loads/surface_load_pb2.pyi +294 -0
  235. dlubal_api-2.10.10.post1/dlubal/api/rfem/loads/surface_set_load_pb2.py +59 -0
  236. dlubal_api-2.10.10.post1/dlubal/api/rfem/loads/surface_set_load_pb2.pyi +294 -0
  237. dlubal_api-2.10.10.post1/dlubal/api/rfem/object_id_pb2.py +39 -0
  238. dlubal_api-2.10.10.post1/dlubal/api/rfem/object_id_pb2.pyi +25 -0
  239. dlubal_api-2.10.10.post1/dlubal/api/rfem/object_type_pb2.py +36 -0
  240. dlubal_api-2.10.10.post1/dlubal/api/rfem/object_type_pb2.pyi +404 -0
  241. dlubal_api-2.10.10.post1/dlubal/api/rfem/result_objects/__init__.py +2 -0
  242. dlubal_api-2.10.10.post1/dlubal/api/rfem/result_objects/result_point_pb2.py +41 -0
  243. dlubal_api-2.10.10.post1/dlubal/api/rfem/result_objects/result_point_pb2.pyi +75 -0
  244. dlubal_api-2.10.10.post1/dlubal/api/rfem/result_objects/result_section_pb2.py +43 -0
  245. dlubal_api-2.10.10.post1/dlubal/api/rfem/result_objects/result_section_pb2.pyi +116 -0
  246. dlubal_api-2.10.10.post1/dlubal/api/rfem/results/__init__.py +3 -0
  247. dlubal_api-2.10.10.post1/dlubal/api/rfem/results/result_table_pb2.py +36 -0
  248. dlubal_api-2.10.10.post1/dlubal/api/rfem/results/result_table_pb2.pyi +70 -0
  249. dlubal_api-2.10.10.post1/dlubal/api/rfem/results/results_query_pb2.py +40 -0
  250. dlubal_api-2.10.10.post1/dlubal/api/rfem/results/results_query_pb2.pyi +26 -0
  251. dlubal_api-2.10.10.post1/dlubal/api/rfem/results/results_type_pb2.py +36 -0
  252. dlubal_api-2.10.10.post1/dlubal/api/rfem/results/results_type_pb2.pyi +416 -0
  253. dlubal_api-2.10.10.post1/dlubal/api/rfem/rsection_stresses/__init__.py +1 -0
  254. dlubal_api-2.10.10.post1/dlubal/api/rfem/rsection_stresses/member_configuration_pb2.py +38 -0
  255. dlubal_api-2.10.10.post1/dlubal/api/rfem/rsection_stresses/member_configuration_pb2.pyi +35 -0
  256. dlubal_api-2.10.10.post1/dlubal/api/rfem/steel_design_objects/__init__.py +4 -0
  257. dlubal_api-2.10.10.post1/dlubal/api/rfem/steel_design_objects/steel_design_fr_configuration_pb2.py +36 -0
  258. dlubal_api-2.10.10.post1/dlubal/api/rfem/steel_design_objects/steel_design_fr_configuration_pb2.pyi +30 -0
  259. dlubal_api-2.10.10.post1/dlubal/api/rfem/steel_design_objects/steel_design_seismic_configuration_pb2.py +36 -0
  260. dlubal_api-2.10.10.post1/dlubal/api/rfem/steel_design_objects/steel_design_seismic_configuration_pb2.pyi +30 -0
  261. dlubal_api-2.10.10.post1/dlubal/api/rfem/steel_design_objects/steel_design_sls_configuration_pb2.py +36 -0
  262. dlubal_api-2.10.10.post1/dlubal/api/rfem/steel_design_objects/steel_design_sls_configuration_pb2.pyi +30 -0
  263. dlubal_api-2.10.10.post1/dlubal/api/rfem/steel_design_objects/steel_design_uls_configuration_pb2.py +36 -0
  264. dlubal_api-2.10.10.post1/dlubal/api/rfem/steel_design_objects/steel_design_uls_configuration_pb2.pyi +30 -0
  265. dlubal_api-2.10.10.post1/dlubal/api/rfem/steel_joint_design_addon_objects/__init__.py +2 -0
  266. dlubal_api-2.10.10.post1/dlubal/api/rfem/steel_joint_design_addon_objects/joint_stiffness_analysis_configuration_pb2.py +36 -0
  267. dlubal_api-2.10.10.post1/dlubal/api/rfem/steel_joint_design_addon_objects/joint_stiffness_analysis_configuration_pb2.pyi +24 -0
  268. dlubal_api-2.10.10.post1/dlubal/api/rfem/steel_joint_design_addon_objects/joint_uls_configuration_pb2.py +36 -0
  269. dlubal_api-2.10.10.post1/dlubal/api/rfem/steel_joint_design_addon_objects/joint_uls_configuration_pb2.pyi +24 -0
  270. dlubal_api-2.10.10.post1/dlubal/api/rfem/stress_analysis_objects/__init__.py +3 -0
  271. dlubal_api-2.10.10.post1/dlubal/api/rfem/stress_analysis_objects/line_welded_joint_configuration_pb2.py +36 -0
  272. dlubal_api-2.10.10.post1/dlubal/api/rfem/stress_analysis_objects/line_welded_joint_configuration_pb2.pyi +24 -0
  273. dlubal_api-2.10.10.post1/dlubal/api/rfem/stress_analysis_objects/solid_configuration_pb2.py +36 -0
  274. dlubal_api-2.10.10.post1/dlubal/api/rfem/stress_analysis_objects/solid_configuration_pb2.pyi +26 -0
  275. dlubal_api-2.10.10.post1/dlubal/api/rfem/stress_analysis_objects/surface_configuration_pb2.py +36 -0
  276. dlubal_api-2.10.10.post1/dlubal/api/rfem/stress_analysis_objects/surface_configuration_pb2.pyi +26 -0
  277. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_advanced/__init__.py +12 -0
  278. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_advanced/block_pb2.py +51 -0
  279. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_advanced/block_pb2.pyi +171 -0
  280. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_advanced/design_strip_pb2.py +57 -0
  281. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_advanced/design_strip_pb2.pyi +344 -0
  282. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_advanced/design_strip_wizard_pb2.py +45 -0
  283. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_advanced/design_strip_wizard_pb2.pyi +114 -0
  284. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_advanced/intersection_pb2.py +36 -0
  285. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_advanced/intersection_pb2.pyi +26 -0
  286. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_advanced/line_release_pb2.py +42 -0
  287. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_advanced/line_release_pb2.pyi +65 -0
  288. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_advanced/nodal_release_pb2.py +38 -0
  289. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_advanced/nodal_release_pb2.pyi +45 -0
  290. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_advanced/rigid_link_pb2.py +41 -0
  291. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_advanced/rigid_link_pb2.pyi +102 -0
  292. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_advanced/structure_modification_pb2.py +78 -0
  293. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_advanced/structure_modification_pb2.pyi +353 -0
  294. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_advanced/surface_cell_pb2.py +41 -0
  295. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_advanced/surface_cell_pb2.pyi +74 -0
  296. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_advanced/surface_release_pb2.py +38 -0
  297. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_advanced/surface_release_pb2.pyi +49 -0
  298. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_advanced/surface_results_adjustment_pb2.py +61 -0
  299. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_advanced/surface_results_adjustment_pb2.pyi +165 -0
  300. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_advanced/surfaces_contact_pb2.py +36 -0
  301. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_advanced/surfaces_contact_pb2.pyi +24 -0
  302. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_core/__init__.py +15 -0
  303. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_core/line_pb2.py +63 -0
  304. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_core/line_pb2.pyi +362 -0
  305. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_core/line_set_pb2.py +39 -0
  306. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_core/line_set_pb2.pyi +52 -0
  307. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_core/material_pb2.py +142 -0
  308. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_core/material_pb2.pyi +1479 -0
  309. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_core/member_pb2.py +171 -0
  310. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_core/member_pb2.pyi +1861 -0
  311. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_core/member_representative_pb2.py +253 -0
  312. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_core/member_representative_pb2.pyi +3079 -0
  313. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_core/member_set_pb2.py +137 -0
  314. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_core/member_set_pb2.pyi +1460 -0
  315. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_core/member_set_representative_pb2.py +36 -0
  316. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_core/member_set_representative_pb2.pyi +13 -0
  317. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_core/node_pb2.py +43 -0
  318. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_core/node_pb2.pyi +139 -0
  319. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_core/opening_pb2.py +37 -0
  320. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_core/opening_pb2.pyi +41 -0
  321. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_core/section_pb2.py +68 -0
  322. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_core/section_pb2.pyi +1956 -0
  323. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_core/solid_pb2.py +53 -0
  324. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_core/solid_pb2.pyi +204 -0
  325. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_core/solid_set_pb2.py +39 -0
  326. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_core/solid_set_pb2.pyi +54 -0
  327. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_core/surface_pb2.py +69 -0
  328. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_core/surface_pb2.pyi +469 -0
  329. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_core/surface_set_pb2.py +49 -0
  330. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_core/surface_set_pb2.pyi +170 -0
  331. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_core/thickness_pb2.py +64 -0
  332. dlubal_api-2.10.10.post1/dlubal/api/rfem/structure_core/thickness_pb2.pyi +444 -0
  333. dlubal_api-2.10.10.post1/dlubal/api/rfem/tendons/__init__.py +2 -0
  334. dlubal_api-2.10.10.post1/dlubal/api/rfem/tendons/member_tendon_pb2.py +40 -0
  335. dlubal_api-2.10.10.post1/dlubal/api/rfem/tendons/member_tendon_pb2.pyi +63 -0
  336. dlubal_api-2.10.10.post1/dlubal/api/rfem/tendons/tendon_anchor_pb2.py +38 -0
  337. dlubal_api-2.10.10.post1/dlubal/api/rfem/tendons/tendon_anchor_pb2.pyi +38 -0
  338. dlubal_api-2.10.10.post1/dlubal/api/rfem/timber_design_objects/__init__.py +3 -0
  339. dlubal_api-2.10.10.post1/dlubal/api/rfem/timber_design_objects/timber_design_fr_configuration_pb2.py +36 -0
  340. dlubal_api-2.10.10.post1/dlubal/api/rfem/timber_design_objects/timber_design_fr_configuration_pb2.pyi +30 -0
  341. dlubal_api-2.10.10.post1/dlubal/api/rfem/timber_design_objects/timber_design_sls_configuration_pb2.py +36 -0
  342. dlubal_api-2.10.10.post1/dlubal/api/rfem/timber_design_objects/timber_design_sls_configuration_pb2.pyi +30 -0
  343. dlubal_api-2.10.10.post1/dlubal/api/rfem/timber_design_objects/timber_design_uls_configuration_pb2.py +36 -0
  344. dlubal_api-2.10.10.post1/dlubal/api/rfem/timber_design_objects/timber_design_uls_configuration_pb2.pyi +30 -0
  345. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_aluminum_design/__init__.py +4 -0
  346. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_aluminum_design/aluminum_boundary_conditions_pb2.py +39 -0
  347. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_aluminum_design/aluminum_boundary_conditions_pb2.pyi +48 -0
  348. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_aluminum_design/aluminum_effective_lengths_pb2.py +79 -0
  349. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_aluminum_design/aluminum_effective_lengths_pb2.pyi +328 -0
  350. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.py +46 -0
  351. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.pyi +119 -0
  352. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.py +48 -0
  353. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.pyi +101 -0
  354. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_concrete_design/__init__.py +5 -0
  355. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_concrete_design/concrete_durability_pb2.py +68 -0
  356. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_concrete_design/concrete_durability_pb2.pyi +253 -0
  357. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_concrete_design/concrete_effective_lengths_pb2.py +107 -0
  358. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_concrete_design/concrete_effective_lengths_pb2.pyi +496 -0
  359. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_concrete_design/punching_reinforcement_pb2.py +52 -0
  360. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_concrete_design/punching_reinforcement_pb2.pyi +201 -0
  361. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_concrete_design/reinforcement_direction_pb2.py +38 -0
  362. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_concrete_design/reinforcement_direction_pb2.pyi +47 -0
  363. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_concrete_design/surface_reinforcement_pb2.py +74 -0
  364. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_concrete_design/surface_reinforcement_pb2.pyi +557 -0
  365. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_craneway_design/__init__.py +2 -0
  366. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_craneway_design/crane_pb2.py +36 -0
  367. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_craneway_design/crane_pb2.pyi +24 -0
  368. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_craneway_design/craneway_pb2.py +48 -0
  369. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_craneway_design/craneway_pb2.pyi +99 -0
  370. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_foundations/__init__.py +1 -0
  371. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_foundations/single_foundation_pb2.py +50 -0
  372. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_foundations/single_foundation_pb2.pyi +171 -0
  373. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_glass_design/__init__.py +1 -0
  374. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_glass_design/glass_composition_model_pb2.py +46 -0
  375. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_glass_design/glass_composition_model_pb2.pyi +201 -0
  376. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_lines/__init__.py +4 -0
  377. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_lines/line_hinge_pb2.py +123 -0
  378. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_lines/line_hinge_pb2.pyi +722 -0
  379. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_lines/line_mesh_refinement_pb2.py +38 -0
  380. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_lines/line_mesh_refinement_pb2.pyi +49 -0
  381. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_lines/line_support_pb2.py +151 -0
  382. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_lines/line_support_pb2.pyi +1006 -0
  383. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_lines/line_welded_joint_pb2.py +42 -0
  384. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_lines/line_welded_joint_pb2.pyi +90 -0
  385. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_members/__init__.py +14 -0
  386. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_members/design_support_pb2.py +50 -0
  387. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_members/design_support_pb2.pyi +161 -0
  388. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_members/diagonal_brace_pb2.py +36 -0
  389. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_members/diagonal_brace_pb2.pyi +30 -0
  390. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_members/member_definable_stiffness_pb2.py +36 -0
  391. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_members/member_definable_stiffness_pb2.pyi +52 -0
  392. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_members/member_eccentricity_pb2.py +49 -0
  393. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_members/member_eccentricity_pb2.pyi +113 -0
  394. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_members/member_hinge_pb2.py +195 -0
  395. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_members/member_hinge_pb2.pyi +1458 -0
  396. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_members/member_nonlinearity_pb2.py +38 -0
  397. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_members/member_nonlinearity_pb2.pyi +61 -0
  398. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_members/member_openings_pb2.py +46 -0
  399. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_members/member_openings_pb2.pyi +93 -0
  400. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_members/member_result_intermediate_point_pb2.py +40 -0
  401. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_members/member_result_intermediate_point_pb2.pyi +52 -0
  402. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_members/member_rotational_restraint_pb2.py +50 -0
  403. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_members/member_rotational_restraint_pb2.pyi +123 -0
  404. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_members/member_shear_panel_pb2.py +40 -0
  405. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_members/member_shear_panel_pb2.pyi +80 -0
  406. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_members/member_spring_pb2.py +52 -0
  407. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_members/member_spring_pb2.pyi +149 -0
  408. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_members/member_stiffness_modification_pb2.py +46 -0
  409. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_members/member_stiffness_modification_pb2.pyi +127 -0
  410. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_members/member_support_pb2.py +49 -0
  411. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_members/member_support_pb2.pyi +156 -0
  412. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_members/member_transverse_stiffener_pb2.py +48 -0
  413. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_members/member_transverse_stiffener_pb2.pyi +143 -0
  414. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_nodes/__init__.py +3 -0
  415. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_nodes/nodal_link_pb2.py +38 -0
  416. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_nodes/nodal_link_pb2.pyi +51 -0
  417. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_nodes/nodal_mesh_refinement_pb2.py +40 -0
  418. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_nodes/nodal_mesh_refinement_pb2.pyi +63 -0
  419. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_nodes/nodal_support_pb2.py +201 -0
  420. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_nodes/nodal_support_pb2.pyi +1360 -0
  421. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_solids/__init__.py +3 -0
  422. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_solids/solid_contacts_pb2.py +40 -0
  423. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_solids/solid_contacts_pb2.pyi +59 -0
  424. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_solids/solid_gas_pb2.py +36 -0
  425. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_solids/solid_gas_pb2.pyi +28 -0
  426. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_solids/solid_mesh_refinement_pb2.py +36 -0
  427. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_solids/solid_mesh_refinement_pb2.pyi +30 -0
  428. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_special_objects/__init__.py +4 -0
  429. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_special_objects/line_release_type_pb2.py +124 -0
  430. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_special_objects/line_release_type_pb2.pyi +757 -0
  431. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_special_objects/nodal_release_type_pb2.py +124 -0
  432. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_special_objects/nodal_release_type_pb2.pyi +799 -0
  433. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_special_objects/surface_release_type_pb2.py +81 -0
  434. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_special_objects/surface_release_type_pb2.pyi +374 -0
  435. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_special_objects/surfaces_contact_type_pb2.py +44 -0
  436. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_special_objects/surfaces_contact_type_pb2.pyi +77 -0
  437. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_steel_design/__init__.py +4 -0
  438. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_steel_design/steel_boundary_conditions_pb2.py +39 -0
  439. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_steel_design/steel_boundary_conditions_pb2.pyi +48 -0
  440. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_steel_design/steel_effective_lengths_pb2.py +113 -0
  441. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_steel_design/steel_effective_lengths_pb2.pyi +502 -0
  442. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_steel_design/steel_member_local_section_reduction_pb2.py +46 -0
  443. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_steel_design/steel_member_local_section_reduction_pb2.pyi +119 -0
  444. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_steel_design/steel_member_transverse_weld_pb2.py +36 -0
  445. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_steel_design/steel_member_transverse_weld_pb2.pyi +30 -0
  446. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_steel_joints/__init__.py +1 -0
  447. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_steel_joints/steel_joint_pb2.py +36 -0
  448. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_steel_joints/steel_joint_pb2.pyi +30 -0
  449. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_surfaces/__init__.py +4 -0
  450. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_surfaces/surface_eccentricity_pb2.py +42 -0
  451. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_surfaces/surface_eccentricity_pb2.pyi +71 -0
  452. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_surfaces/surface_mesh_refinement_pb2.py +36 -0
  453. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_surfaces/surface_mesh_refinement_pb2.pyi +30 -0
  454. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_surfaces/surface_stiffness_modification_pb2.py +40 -0
  455. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_surfaces/surface_stiffness_modification_pb2.pyi +155 -0
  456. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_surfaces/surface_support_pb2.py +43 -0
  457. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_surfaces/surface_support_pb2.pyi +80 -0
  458. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_timber_design/__init__.py +6 -0
  459. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_timber_design/timber_effective_lengths_pb2.py +93 -0
  460. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_timber_design/timber_effective_lengths_pb2.pyi +414 -0
  461. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_timber_design/timber_member_local_section_reduction_pb2.py +48 -0
  462. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_timber_design/timber_member_local_section_reduction_pb2.pyi +121 -0
  463. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_timber_design/timber_moisture_class_pb2.py +38 -0
  464. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_timber_design/timber_moisture_class_pb2.pyi +45 -0
  465. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_timber_design/timber_screw_type_pb2.py +36 -0
  466. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_timber_design/timber_screw_type_pb2.pyi +13 -0
  467. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_timber_design/timber_service_class_pb2.py +38 -0
  468. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_timber_design/timber_service_class_pb2.pyi +45 -0
  469. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_timber_design/timber_service_conditions_pb2.py +42 -0
  470. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_timber_design/timber_service_conditions_pb2.pyi +107 -0
  471. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_timber_joints/__init__.py +1 -0
  472. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_timber_joints/timber_joint_pb2.py +36 -0
  473. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_timber_joints/timber_joint_pb2.pyi +30 -0
  474. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_wind_simulation/__init__.py +1 -0
  475. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_wind_simulation/shrink_wrapping_settings_pb2.py +40 -0
  476. dlubal_api-2.10.10.post1/dlubal/api/rfem/types_for_wind_simulation/shrink_wrapping_settings_pb2.pyi +59 -0
  477. dlubal_api-2.10.10.post1/dlubal/api/rstab/__init__.py +32 -0
  478. dlubal_api-2.10.10.post1/dlubal/api/rstab/all_pb2.py +36 -0
  479. dlubal_api-2.10.10.post1/dlubal/api/rstab/all_pb2.pyi +9 -0
  480. dlubal_api-2.10.10.post1/dlubal/api/rstab/aluminum_design_objects/__init__.py +2 -0
  481. dlubal_api-2.10.10.post1/dlubal/api/rstab/aluminum_design_objects/aluminum_design_sls_configuration_pb2.py +36 -0
  482. dlubal_api-2.10.10.post1/dlubal/api/rstab/aluminum_design_objects/aluminum_design_sls_configuration_pb2.pyi +30 -0
  483. dlubal_api-2.10.10.post1/dlubal/api/rstab/aluminum_design_objects/aluminum_design_uls_configuration_pb2.py +36 -0
  484. dlubal_api-2.10.10.post1/dlubal/api/rstab/aluminum_design_objects/aluminum_design_uls_configuration_pb2.pyi +30 -0
  485. dlubal_api-2.10.10.post1/dlubal/api/rstab/application.py +551 -0
  486. dlubal_api-2.10.10.post1/dlubal/api/rstab/application_pb2.py +51 -0
  487. dlubal_api-2.10.10.post1/dlubal/api/rstab/application_pb2.pyi +42 -0
  488. dlubal_api-2.10.10.post1/dlubal/api/rstab/application_pb2_grpc.py +1469 -0
  489. dlubal_api-2.10.10.post1/dlubal/api/rstab/base_data_pb2.py +86 -0
  490. dlubal_api-2.10.10.post1/dlubal/api/rstab/base_data_pb2.pyi +2154 -0
  491. dlubal_api-2.10.10.post1/dlubal/api/rstab/calculation_diagrams/__init__.py +1 -0
  492. dlubal_api-2.10.10.post1/dlubal/api/rstab/calculation_diagrams/calculation_diagram_pb2.py +53 -0
  493. dlubal_api-2.10.10.post1/dlubal/api/rstab/calculation_diagrams/calculation_diagram_pb2.pyi +1706 -0
  494. dlubal_api-2.10.10.post1/dlubal/api/rstab/concrete_design_objects/__init__.py +4 -0
  495. dlubal_api-2.10.10.post1/dlubal/api/rstab/concrete_design_objects/concrete_design_fr_configuration_pb2.py +36 -0
  496. dlubal_api-2.10.10.post1/dlubal/api/rstab/concrete_design_objects/concrete_design_fr_configuration_pb2.pyi +58 -0
  497. dlubal_api-2.10.10.post1/dlubal/api/rstab/concrete_design_objects/concrete_design_seismic_configuration_pb2.py +36 -0
  498. dlubal_api-2.10.10.post1/dlubal/api/rstab/concrete_design_objects/concrete_design_seismic_configuration_pb2.pyi +58 -0
  499. dlubal_api-2.10.10.post1/dlubal/api/rstab/concrete_design_objects/concrete_design_sls_configuration_pb2.py +36 -0
  500. dlubal_api-2.10.10.post1/dlubal/api/rstab/concrete_design_objects/concrete_design_sls_configuration_pb2.pyi +34 -0
  501. dlubal_api-2.10.10.post1/dlubal/api/rstab/concrete_design_objects/concrete_design_uls_configuration_pb2.py +36 -0
  502. dlubal_api-2.10.10.post1/dlubal/api/rstab/concrete_design_objects/concrete_design_uls_configuration_pb2.pyi +34 -0
  503. dlubal_api-2.10.10.post1/dlubal/api/rstab/craneway_design_objects/__init__.py +2 -0
  504. dlubal_api-2.10.10.post1/dlubal/api/rstab/craneway_design_objects/craneway_sls_configuration_pb2.py +36 -0
  505. dlubal_api-2.10.10.post1/dlubal/api/rstab/craneway_design_objects/craneway_sls_configuration_pb2.pyi +24 -0
  506. dlubal_api-2.10.10.post1/dlubal/api/rstab/craneway_design_objects/craneway_uls_configuration_pb2.py +36 -0
  507. dlubal_api-2.10.10.post1/dlubal/api/rstab/craneway_design_objects/craneway_uls_configuration_pb2.pyi +24 -0
  508. dlubal_api-2.10.10.post1/dlubal/api/rstab/dynamic_loads/__init__.py +3 -0
  509. dlubal_api-2.10.10.post1/dlubal/api/rstab/dynamic_loads/accelerogram_pb2.py +42 -0
  510. dlubal_api-2.10.10.post1/dlubal/api/rstab/dynamic_loads/accelerogram_pb2.pyi +67 -0
  511. dlubal_api-2.10.10.post1/dlubal/api/rstab/dynamic_loads/response_spectrum_pb2.py +44 -0
  512. dlubal_api-2.10.10.post1/dlubal/api/rstab/dynamic_loads/response_spectrum_pb2.pyi +89 -0
  513. dlubal_api-2.10.10.post1/dlubal/api/rstab/dynamic_loads/time_diagram_pb2.py +46 -0
  514. dlubal_api-2.10.10.post1/dlubal/api/rstab/dynamic_loads/time_diagram_pb2.pyi +83 -0
  515. dlubal_api-2.10.10.post1/dlubal/api/rstab/global_parameters/__init__.py +1 -0
  516. dlubal_api-2.10.10.post1/dlubal/api/rstab/global_parameters/global_parameter_pb2.py +40 -0
  517. dlubal_api-2.10.10.post1/dlubal/api/rstab/global_parameters/global_parameter_pb2.pyi +276 -0
  518. dlubal_api-2.10.10.post1/dlubal/api/rstab/guide_objects/__init__.py +14 -0
  519. dlubal_api-2.10.10.post1/dlubal/api/rstab/guide_objects/building_grid_pb2.py +53 -0
  520. dlubal_api-2.10.10.post1/dlubal/api/rstab/guide_objects/building_grid_pb2.pyi +207 -0
  521. dlubal_api-2.10.10.post1/dlubal/api/rstab/guide_objects/clipping_box_pb2.py +36 -0
  522. dlubal_api-2.10.10.post1/dlubal/api/rstab/guide_objects/clipping_box_pb2.pyi +13 -0
  523. dlubal_api-2.10.10.post1/dlubal/api/rstab/guide_objects/clipping_plane_pb2.py +45 -0
  524. dlubal_api-2.10.10.post1/dlubal/api/rstab/guide_objects/clipping_plane_pb2.pyi +113 -0
  525. dlubal_api-2.10.10.post1/dlubal/api/rstab/guide_objects/coordinate_system_pb2.py +41 -0
  526. dlubal_api-2.10.10.post1/dlubal/api/rstab/guide_objects/coordinate_system_pb2.pyi +91 -0
  527. dlubal_api-2.10.10.post1/dlubal/api/rstab/guide_objects/dimension_pb2.py +67 -0
  528. dlubal_api-2.10.10.post1/dlubal/api/rstab/guide_objects/dimension_pb2.pyi +262 -0
  529. dlubal_api-2.10.10.post1/dlubal/api/rstab/guide_objects/dxf_file_model_object_pb2.py +41 -0
  530. dlubal_api-2.10.10.post1/dlubal/api/rstab/guide_objects/dxf_file_model_object_pb2.pyi +119 -0
  531. dlubal_api-2.10.10.post1/dlubal/api/rstab/guide_objects/dxf_model_object_pb2.py +36 -0
  532. dlubal_api-2.10.10.post1/dlubal/api/rstab/guide_objects/dxf_model_object_pb2.pyi +15 -0
  533. dlubal_api-2.10.10.post1/dlubal/api/rstab/guide_objects/group_of_object_selections_pb2.py +36 -0
  534. dlubal_api-2.10.10.post1/dlubal/api/rstab/guide_objects/group_of_object_selections_pb2.pyi +28 -0
  535. dlubal_api-2.10.10.post1/dlubal/api/rstab/guide_objects/guideline_pb2.py +42 -0
  536. dlubal_api-2.10.10.post1/dlubal/api/rstab/guide_objects/guideline_pb2.pyi +90 -0
  537. dlubal_api-2.10.10.post1/dlubal/api/rstab/guide_objects/layer_group_pb2.py +36 -0
  538. dlubal_api-2.10.10.post1/dlubal/api/rstab/guide_objects/layer_group_pb2.pyi +22 -0
  539. dlubal_api-2.10.10.post1/dlubal/api/rstab/guide_objects/layer_pb2.py +36 -0
  540. dlubal_api-2.10.10.post1/dlubal/api/rstab/guide_objects/layer_pb2.pyi +25 -0
  541. dlubal_api-2.10.10.post1/dlubal/api/rstab/guide_objects/note_pb2.py +43 -0
  542. dlubal_api-2.10.10.post1/dlubal/api/rstab/guide_objects/note_pb2.pyi +101 -0
  543. dlubal_api-2.10.10.post1/dlubal/api/rstab/guide_objects/object_snap_pb2.py +38 -0
  544. dlubal_api-2.10.10.post1/dlubal/api/rstab/guide_objects/object_snap_pb2.pyi +84 -0
  545. dlubal_api-2.10.10.post1/dlubal/api/rstab/guide_objects/visual_object_pb2.py +43 -0
  546. dlubal_api-2.10.10.post1/dlubal/api/rstab/guide_objects/visual_object_pb2.pyi +127 -0
  547. dlubal_api-2.10.10.post1/dlubal/api/rstab/ifc_objects/__init__.py +2 -0
  548. dlubal_api-2.10.10.post1/dlubal/api/rstab/ifc_objects/ifc_file_model_object_pb2.py +46 -0
  549. dlubal_api-2.10.10.post1/dlubal/api/rstab/ifc_objects/ifc_file_model_object_pb2.pyi +90 -0
  550. dlubal_api-2.10.10.post1/dlubal/api/rstab/ifc_objects/ifc_model_object_pb2.py +36 -0
  551. dlubal_api-2.10.10.post1/dlubal/api/rstab/ifc_objects/ifc_model_object_pb2.pyi +19 -0
  552. dlubal_api-2.10.10.post1/dlubal/api/rstab/imperfections/__init__.py +3 -0
  553. dlubal_api-2.10.10.post1/dlubal/api/rstab/imperfections/imperfection_case_pb2.py +56 -0
  554. dlubal_api-2.10.10.post1/dlubal/api/rstab/imperfections/imperfection_case_pb2.pyi +197 -0
  555. dlubal_api-2.10.10.post1/dlubal/api/rstab/imperfections/member_imperfection_pb2.py +50 -0
  556. dlubal_api-2.10.10.post1/dlubal/api/rstab/imperfections/member_imperfection_pb2.pyi +201 -0
  557. dlubal_api-2.10.10.post1/dlubal/api/rstab/imperfections/member_set_imperfection_pb2.py +50 -0
  558. dlubal_api-2.10.10.post1/dlubal/api/rstab/imperfections/member_set_imperfection_pb2.pyi +199 -0
  559. dlubal_api-2.10.10.post1/dlubal/api/rstab/load_wizards/__init__.py +7 -0
  560. dlubal_api-2.10.10.post1/dlubal/api/rstab/load_wizards/import_support_reactions_pb2.py +42 -0
  561. dlubal_api-2.10.10.post1/dlubal/api/rstab/load_wizards/import_support_reactions_pb2.pyi +71 -0
  562. dlubal_api-2.10.10.post1/dlubal/api/rstab/load_wizards/load_model_pb2.py +40 -0
  563. dlubal_api-2.10.10.post1/dlubal/api/rstab/load_wizards/load_model_pb2.pyi +37 -0
  564. dlubal_api-2.10.10.post1/dlubal/api/rstab/load_wizards/member_loads_from_area_load_pb2.py +42 -0
  565. dlubal_api-2.10.10.post1/dlubal/api/rstab/load_wizards/member_loads_from_area_load_pb2.pyi +77 -0
  566. dlubal_api-2.10.10.post1/dlubal/api/rstab/load_wizards/member_loads_from_free_line_load_pb2.py +45 -0
  567. dlubal_api-2.10.10.post1/dlubal/api/rstab/load_wizards/member_loads_from_free_line_load_pb2.pyi +110 -0
  568. dlubal_api-2.10.10.post1/dlubal/api/rstab/load_wizards/moving_load_pb2.py +48 -0
  569. dlubal_api-2.10.10.post1/dlubal/api/rstab/load_wizards/moving_load_pb2.pyi +660 -0
  570. dlubal_api-2.10.10.post1/dlubal/api/rstab/load_wizards/snow_load_pb2.py +58 -0
  571. dlubal_api-2.10.10.post1/dlubal/api/rstab/load_wizards/snow_load_pb2.pyi +837 -0
  572. dlubal_api-2.10.10.post1/dlubal/api/rstab/load_wizards/wind_load_pb2.py +54 -0
  573. dlubal_api-2.10.10.post1/dlubal/api/rstab/load_wizards/wind_load_pb2.pyi +817 -0
  574. dlubal_api-2.10.10.post1/dlubal/api/rstab/loading/__init__.py +14 -0
  575. dlubal_api-2.10.10.post1/dlubal/api/rstab/loading/action_combination_pb2.py +48 -0
  576. dlubal_api-2.10.10.post1/dlubal/api/rstab/loading/action_combination_pb2.pyi +151 -0
  577. dlubal_api-2.10.10.post1/dlubal/api/rstab/loading/action_pb2.py +46 -0
  578. dlubal_api-2.10.10.post1/dlubal/api/rstab/loading/action_pb2.pyi +681 -0
  579. dlubal_api-2.10.10.post1/dlubal/api/rstab/loading/combination_wizard_pb2.py +45 -0
  580. dlubal_api-2.10.10.post1/dlubal/api/rstab/loading/combination_wizard_pb2.pyi +88 -0
  581. dlubal_api-2.10.10.post1/dlubal/api/rstab/loading/design_situation_pb2.py +47 -0
  582. dlubal_api-2.10.10.post1/dlubal/api/rstab/loading/design_situation_pb2.pyi +1188 -0
  583. dlubal_api-2.10.10.post1/dlubal/api/rstab/loading/load_case_pb2.py +90 -0
  584. dlubal_api-2.10.10.post1/dlubal/api/rstab/loading/load_case_pb2.pyi +1211 -0
  585. dlubal_api-2.10.10.post1/dlubal/api/rstab/loading/load_combination_pb2.py +61 -0
  586. dlubal_api-2.10.10.post1/dlubal/api/rstab/loading/load_combination_pb2.pyi +352 -0
  587. dlubal_api-2.10.10.post1/dlubal/api/rstab/loading/modal_analysis_settings_pb2.py +46 -0
  588. dlubal_api-2.10.10.post1/dlubal/api/rstab/loading/modal_analysis_settings_pb2.pyi +104 -0
  589. dlubal_api-2.10.10.post1/dlubal/api/rstab/loading/optimization_settings_pb2.py +44 -0
  590. dlubal_api-2.10.10.post1/dlubal/api/rstab/loading/optimization_settings_pb2.pyi +91 -0
  591. dlubal_api-2.10.10.post1/dlubal/api/rstab/loading/relationship_between_load_cases_pb2.py +44 -0
  592. dlubal_api-2.10.10.post1/dlubal/api/rstab/loading/relationship_between_load_cases_pb2.pyi +64 -0
  593. dlubal_api-2.10.10.post1/dlubal/api/rstab/loading/result_combination_pb2.py +55 -0
  594. dlubal_api-2.10.10.post1/dlubal/api/rstab/loading/result_combination_pb2.pyi +280 -0
  595. dlubal_api-2.10.10.post1/dlubal/api/rstab/loading/spectral_analysis_settings_pb2.py +46 -0
  596. dlubal_api-2.10.10.post1/dlubal/api/rstab/loading/spectral_analysis_settings_pb2.pyi +82 -0
  597. dlubal_api-2.10.10.post1/dlubal/api/rstab/loading/stability_analysis_settings_pb2.py +44 -0
  598. dlubal_api-2.10.10.post1/dlubal/api/rstab/loading/stability_analysis_settings_pb2.pyi +114 -0
  599. dlubal_api-2.10.10.post1/dlubal/api/rstab/loading/static_analysis_settings_pb2.py +42 -0
  600. dlubal_api-2.10.10.post1/dlubal/api/rstab/loading/static_analysis_settings_pb2.pyi +110 -0
  601. dlubal_api-2.10.10.post1/dlubal/api/rstab/loading/time_history_analysis_settings_pb2.py +48 -0
  602. dlubal_api-2.10.10.post1/dlubal/api/rstab/loading/time_history_analysis_settings_pb2.pyi +116 -0
  603. dlubal_api-2.10.10.post1/dlubal/api/rstab/loads/__init__.py +5 -0
  604. dlubal_api-2.10.10.post1/dlubal/api/rstab/loads/additional_foundation_load_pb2.py +41 -0
  605. dlubal_api-2.10.10.post1/dlubal/api/rstab/loads/additional_foundation_load_pb2.pyi +80 -0
  606. dlubal_api-2.10.10.post1/dlubal/api/rstab/loads/imposed_nodal_deformation_pb2.py +37 -0
  607. dlubal_api-2.10.10.post1/dlubal/api/rstab/loads/imposed_nodal_deformation_pb2.pyi +43 -0
  608. dlubal_api-2.10.10.post1/dlubal/api/rstab/loads/member_load_pb2.py +69 -0
  609. dlubal_api-2.10.10.post1/dlubal/api/rstab/loads/member_load_pb2.pyi +402 -0
  610. dlubal_api-2.10.10.post1/dlubal/api/rstab/loads/member_set_load_pb2.py +69 -0
  611. dlubal_api-2.10.10.post1/dlubal/api/rstab/loads/member_set_load_pb2.pyi +400 -0
  612. dlubal_api-2.10.10.post1/dlubal/api/rstab/loads/nodal_load_pb2.py +47 -0
  613. dlubal_api-2.10.10.post1/dlubal/api/rstab/loads/nodal_load_pb2.pyi +200 -0
  614. dlubal_api-2.10.10.post1/dlubal/api/rstab/object_id_pb2.py +39 -0
  615. dlubal_api-2.10.10.post1/dlubal/api/rstab/object_id_pb2.pyi +25 -0
  616. dlubal_api-2.10.10.post1/dlubal/api/rstab/object_type_pb2.py +36 -0
  617. dlubal_api-2.10.10.post1/dlubal/api/rstab/object_type_pb2.pyi +230 -0
  618. dlubal_api-2.10.10.post1/dlubal/api/rstab/results/__init__.py +3 -0
  619. dlubal_api-2.10.10.post1/dlubal/api/rstab/results/result_table_pb2.py +36 -0
  620. dlubal_api-2.10.10.post1/dlubal/api/rstab/results/result_table_pb2.pyi +50 -0
  621. dlubal_api-2.10.10.post1/dlubal/api/rstab/results/results_query_pb2.py +40 -0
  622. dlubal_api-2.10.10.post1/dlubal/api/rstab/results/results_query_pb2.pyi +26 -0
  623. dlubal_api-2.10.10.post1/dlubal/api/rstab/results/results_type_pb2.py +36 -0
  624. dlubal_api-2.10.10.post1/dlubal/api/rstab/results/results_type_pb2.pyi +416 -0
  625. dlubal_api-2.10.10.post1/dlubal/api/rstab/steel_design_objects/__init__.py +4 -0
  626. dlubal_api-2.10.10.post1/dlubal/api/rstab/steel_design_objects/steel_design_fr_configuration_pb2.py +36 -0
  627. dlubal_api-2.10.10.post1/dlubal/api/rstab/steel_design_objects/steel_design_fr_configuration_pb2.pyi +30 -0
  628. dlubal_api-2.10.10.post1/dlubal/api/rstab/steel_design_objects/steel_design_seismic_configuration_pb2.py +36 -0
  629. dlubal_api-2.10.10.post1/dlubal/api/rstab/steel_design_objects/steel_design_seismic_configuration_pb2.pyi +30 -0
  630. dlubal_api-2.10.10.post1/dlubal/api/rstab/steel_design_objects/steel_design_sls_configuration_pb2.py +36 -0
  631. dlubal_api-2.10.10.post1/dlubal/api/rstab/steel_design_objects/steel_design_sls_configuration_pb2.pyi +30 -0
  632. dlubal_api-2.10.10.post1/dlubal/api/rstab/steel_design_objects/steel_design_uls_configuration_pb2.py +36 -0
  633. dlubal_api-2.10.10.post1/dlubal/api/rstab/steel_design_objects/steel_design_uls_configuration_pb2.pyi +30 -0
  634. dlubal_api-2.10.10.post1/dlubal/api/rstab/structure_advanced/__init__.py +3 -0
  635. dlubal_api-2.10.10.post1/dlubal/api/rstab/structure_advanced/block_pb2.py +51 -0
  636. dlubal_api-2.10.10.post1/dlubal/api/rstab/structure_advanced/block_pb2.pyi +169 -0
  637. dlubal_api-2.10.10.post1/dlubal/api/rstab/structure_advanced/nodal_release_pb2.py +38 -0
  638. dlubal_api-2.10.10.post1/dlubal/api/rstab/structure_advanced/nodal_release_pb2.pyi +41 -0
  639. dlubal_api-2.10.10.post1/dlubal/api/rstab/structure_advanced/structure_modification_pb2.py +62 -0
  640. dlubal_api-2.10.10.post1/dlubal/api/rstab/structure_advanced/structure_modification_pb2.pyi +225 -0
  641. dlubal_api-2.10.10.post1/dlubal/api/rstab/structure_core/__init__.py +7 -0
  642. dlubal_api-2.10.10.post1/dlubal/api/rstab/structure_core/material_pb2.py +112 -0
  643. dlubal_api-2.10.10.post1/dlubal/api/rstab/structure_core/material_pb2.pyi +1043 -0
  644. dlubal_api-2.10.10.post1/dlubal/api/rstab/structure_core/member_pb2.py +163 -0
  645. dlubal_api-2.10.10.post1/dlubal/api/rstab/structure_core/member_pb2.pyi +1748 -0
  646. dlubal_api-2.10.10.post1/dlubal/api/rstab/structure_core/member_representative_pb2.py +245 -0
  647. dlubal_api-2.10.10.post1/dlubal/api/rstab/structure_core/member_representative_pb2.pyi +2966 -0
  648. dlubal_api-2.10.10.post1/dlubal/api/rstab/structure_core/member_set_pb2.py +137 -0
  649. dlubal_api-2.10.10.post1/dlubal/api/rstab/structure_core/member_set_pb2.pyi +1460 -0
  650. dlubal_api-2.10.10.post1/dlubal/api/rstab/structure_core/member_set_representative_pb2.py +347 -0
  651. dlubal_api-2.10.10.post1/dlubal/api/rstab/structure_core/member_set_representative_pb2.pyi +4466 -0
  652. dlubal_api-2.10.10.post1/dlubal/api/rstab/structure_core/node_pb2.py +43 -0
  653. dlubal_api-2.10.10.post1/dlubal/api/rstab/structure_core/node_pb2.pyi +131 -0
  654. dlubal_api-2.10.10.post1/dlubal/api/rstab/structure_core/section_pb2.py +68 -0
  655. dlubal_api-2.10.10.post1/dlubal/api/rstab/structure_core/section_pb2.pyi +1956 -0
  656. dlubal_api-2.10.10.post1/dlubal/api/rstab/timber_design_objects/__init__.py +3 -0
  657. dlubal_api-2.10.10.post1/dlubal/api/rstab/timber_design_objects/timber_design_fr_configuration_pb2.py +36 -0
  658. dlubal_api-2.10.10.post1/dlubal/api/rstab/timber_design_objects/timber_design_fr_configuration_pb2.pyi +30 -0
  659. dlubal_api-2.10.10.post1/dlubal/api/rstab/timber_design_objects/timber_design_sls_configuration_pb2.py +36 -0
  660. dlubal_api-2.10.10.post1/dlubal/api/rstab/timber_design_objects/timber_design_sls_configuration_pb2.pyi +30 -0
  661. dlubal_api-2.10.10.post1/dlubal/api/rstab/timber_design_objects/timber_design_uls_configuration_pb2.py +36 -0
  662. dlubal_api-2.10.10.post1/dlubal/api/rstab/timber_design_objects/timber_design_uls_configuration_pb2.pyi +30 -0
  663. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_aluminum_design/__init__.py +4 -0
  664. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_aluminum_design/aluminum_boundary_conditions_pb2.py +39 -0
  665. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_aluminum_design/aluminum_boundary_conditions_pb2.pyi +48 -0
  666. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_aluminum_design/aluminum_effective_lengths_pb2.py +79 -0
  667. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_aluminum_design/aluminum_effective_lengths_pb2.pyi +328 -0
  668. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.py +46 -0
  669. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.pyi +119 -0
  670. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.py +48 -0
  671. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.pyi +101 -0
  672. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_concrete_design/__init__.py +2 -0
  673. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_concrete_design/concrete_durability_pb2.py +68 -0
  674. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_concrete_design/concrete_durability_pb2.pyi +251 -0
  675. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_concrete_design/concrete_effective_lengths_pb2.py +107 -0
  676. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_concrete_design/concrete_effective_lengths_pb2.pyi +496 -0
  677. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_craneway_design/__init__.py +2 -0
  678. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_craneway_design/crane_pb2.py +36 -0
  679. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_craneway_design/crane_pb2.pyi +24 -0
  680. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_craneway_design/craneway_pb2.py +48 -0
  681. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_craneway_design/craneway_pb2.pyi +99 -0
  682. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_foundations/__init__.py +1 -0
  683. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_foundations/single_foundation_pb2.py +50 -0
  684. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_foundations/single_foundation_pb2.pyi +171 -0
  685. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_members/__init__.py +13 -0
  686. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_members/design_support_pb2.py +50 -0
  687. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_members/design_support_pb2.pyi +161 -0
  688. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_members/diagonal_brace_pb2.py +36 -0
  689. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_members/diagonal_brace_pb2.pyi +30 -0
  690. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_members/member_definable_stiffness_pb2.py +36 -0
  691. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_members/member_definable_stiffness_pb2.pyi +52 -0
  692. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_members/member_eccentricity_pb2.py +49 -0
  693. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_members/member_eccentricity_pb2.pyi +107 -0
  694. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_members/member_hinge_pb2.py +195 -0
  695. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_members/member_hinge_pb2.pyi +1458 -0
  696. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_members/member_nonlinearity_pb2.py +38 -0
  697. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_members/member_nonlinearity_pb2.pyi +61 -0
  698. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_members/member_result_intermediate_point_pb2.py +40 -0
  699. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_members/member_result_intermediate_point_pb2.pyi +52 -0
  700. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_members/member_rotational_restraint_pb2.py +50 -0
  701. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_members/member_rotational_restraint_pb2.pyi +123 -0
  702. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_members/member_shear_panel_pb2.py +40 -0
  703. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_members/member_shear_panel_pb2.pyi +80 -0
  704. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_members/member_spring_pb2.py +52 -0
  705. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_members/member_spring_pb2.pyi +149 -0
  706. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_members/member_stiffness_modification_pb2.py +46 -0
  707. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_members/member_stiffness_modification_pb2.pyi +127 -0
  708. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_members/member_support_pb2.py +49 -0
  709. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_members/member_support_pb2.pyi +156 -0
  710. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_members/member_transverse_stiffener_pb2.py +48 -0
  711. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_members/member_transverse_stiffener_pb2.pyi +143 -0
  712. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_nodes/__init__.py +1 -0
  713. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_nodes/nodal_support_pb2.py +201 -0
  714. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_nodes/nodal_support_pb2.pyi +1354 -0
  715. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_special_objects/__init__.py +1 -0
  716. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_special_objects/nodal_release_type_pb2.py +124 -0
  717. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_special_objects/nodal_release_type_pb2.pyi +797 -0
  718. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_steel_design/__init__.py +4 -0
  719. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_steel_design/steel_boundary_conditions_pb2.py +39 -0
  720. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_steel_design/steel_boundary_conditions_pb2.pyi +48 -0
  721. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_steel_design/steel_effective_lengths_pb2.py +113 -0
  722. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_steel_design/steel_effective_lengths_pb2.pyi +502 -0
  723. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_steel_design/steel_member_local_section_reduction_pb2.py +46 -0
  724. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_steel_design/steel_member_local_section_reduction_pb2.pyi +119 -0
  725. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_steel_design/steel_member_transverse_weld_pb2.py +36 -0
  726. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_steel_design/steel_member_transverse_weld_pb2.pyi +30 -0
  727. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_timber_design/__init__.py +6 -0
  728. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_timber_design/timber_effective_lengths_pb2.py +93 -0
  729. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_timber_design/timber_effective_lengths_pb2.pyi +414 -0
  730. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_timber_design/timber_member_local_section_reduction_pb2.py +48 -0
  731. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_timber_design/timber_member_local_section_reduction_pb2.pyi +121 -0
  732. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_timber_design/timber_moisture_class_pb2.py +38 -0
  733. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_timber_design/timber_moisture_class_pb2.pyi +41 -0
  734. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_timber_design/timber_screw_type_pb2.py +36 -0
  735. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_timber_design/timber_screw_type_pb2.pyi +13 -0
  736. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_timber_design/timber_service_class_pb2.py +38 -0
  737. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_timber_design/timber_service_class_pb2.pyi +41 -0
  738. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_timber_design/timber_service_conditions_pb2.py +42 -0
  739. dlubal_api-2.10.10.post1/dlubal/api/rstab/types_for_timber_design/timber_service_conditions_pb2.pyi +103 -0
  740. {dlubal_api-2.10.10 → dlubal_api-2.10.10.post1}/dlubal.api.egg-info/PKG-INFO +1 -1
  741. dlubal_api-2.10.10.post1/dlubal.api.egg-info/SOURCES.txt +1488 -0
  742. {dlubal_api-2.10.10 → dlubal_api-2.10.10.post1}/setup.py +1 -1
  743. dlubal_api-2.10.10/dlubal.api.egg-info/SOURCES.txt +0 -12
  744. {dlubal_api-2.10.10 → dlubal_api-2.10.10.post1}/README.md +0 -0
  745. {dlubal_api-2.10.10 → dlubal_api-2.10.10.post1}/dlubal/__init__.py +0 -0
  746. {dlubal_api-2.10.10 → dlubal_api-2.10.10.post1}/dlubal/api/__init__.py +0 -0
  747. {dlubal_api-2.10.10 → dlubal_api-2.10.10.post1}/dlubal.api.egg-info/dependency_links.txt +0 -0
  748. {dlubal_api-2.10.10 → dlubal_api-2.10.10.post1}/dlubal.api.egg-info/not-zip-safe +0 -0
  749. {dlubal_api-2.10.10 → dlubal_api-2.10.10.post1}/dlubal.api.egg-info/requires.txt +0 -0
  750. {dlubal_api-2.10.10 → dlubal_api-2.10.10.post1}/dlubal.api.egg-info/top_level.txt +0 -0
  751. {dlubal_api-2.10.10 → dlubal_api-2.10.10.post1}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dlubal.api
3
- Version: 2.10.10
3
+ Version: 2.10.10.post1
4
4
  Summary: Python Client Library for Dlubal Software APIs powered by gRPC
5
5
  Author: Dlubal Software
6
6
  Author-email: api@dlubal.com
@@ -0,0 +1,5 @@
1
+ from .common_messages_pb2 import *
2
+ from .model_id_pb2 import *
3
+ from .table_data_pb2 import *
4
+ from .common_pb2 import *
5
+ from . import import_export
@@ -0,0 +1,76 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: dlubal/api/common/common_messages.proto
5
+ # Protobuf Python Version: 5.28.1
6
+ """Generated protocol buffer code."""
7
+ from google.protobuf import descriptor as _descriptor
8
+ from google.protobuf import descriptor_pool as _descriptor_pool
9
+ from google.protobuf import runtime_version as _runtime_version
10
+ from google.protobuf import symbol_database as _symbol_database
11
+ from google.protobuf.internal import builder as _builder
12
+ _runtime_version.ValidateProtobufRuntimeVersion(
13
+ _runtime_version.Domain.PUBLIC,
14
+ 5,
15
+ 28,
16
+ 1,
17
+ '',
18
+ 'dlubal/api/common/common_messages.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+ from google.protobuf import any_pb2 as google_dot_protobuf_dot_any__pb2
26
+ from dlubal.api.common import model_id_pb2 as dlubal_dot_api_dot_common_dot_model__id__pb2
27
+
28
+
29
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\'dlubal/api/common/common_messages.proto\x12\x11\x64lubal.api.common\x1a\x19google/protobuf/any.proto\x1a dlubal/api/common/model_id.proto\"P\n\x12\x43reateModelRequest\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x1a\n\rtemplate_path\x18\x02 \x01(\tH\x00\x88\x01\x01\x42\x10\n\x0e_template_path\" \n\x10OpenModelRequest\x12\x0c\n\x04path\x18\x01 \x01(\t\"p\n\x12SaveModelAsRequest\x12\x31\n\x08model_id\x18\x01 \x01(\x0b\x32\x1a.dlubal.api.common.ModelIdH\x00\x88\x01\x01\x12\x11\n\x04path\x18\x02 \x01(\tH\x01\x88\x01\x01\x42\x0b\n\t_model_idB\x07\n\x05_path\"i\n\x11\x43loseModelRequest\x12\x14\n\x0csave_changes\x18\x02 \x01(\x08\x12\x31\n\x08model_id\x18\x01 \x01(\x0b\x32\x1a.dlubal.api.common.ModelIdH\x00\x88\x01\x01\x42\x0b\n\t_model_id\"-\n\x15\x43loseAllModelsRequest\x12\x14\n\x0csave_changes\x18\x01 \x01(\x08\"C\n\tModelInfo\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0c\n\x04guid\x18\x02 \x01(\t\x12\x11\n\x04path\x18\x03 \x01(\tH\x00\x88\x01\x01\x42\x07\n\x05_path\"=\n\tModelList\x12\x30\n\nmodel_info\x18\x01 \x03(\x0b\x32\x1c.dlubal.api.common.ModelInfo\"\xd1\x01\n\x0f\x41pplicationInfo\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x30\n\x04type\x18\x02 \x01(\x0e\x32\".dlubal.api.common.ApplicationType\x12\x1a\n\x12is_server_instance\x18\x03 \x01(\x08\x12\x0f\n\x07version\x18\x04 \x01(\t\x12\x14\n\x0c\x66ull_version\x18\x05 \x01(\t\x12\x0f\n\x07options\x18\x06 \x01(\t\x12\x15\n\rlanguage_name\x18\x07 \x01(\t\x12\x13\n\x0blanguage_id\x18\x08 \x01(\t\"n\n\x06Object\x12$\n\x06object\x18\x01 \x01(\x0b\x32\x14.google.protobuf.Any\x12\x31\n\x08model_id\x18\x02 \x01(\x0b\x32\x1a.dlubal.api.common.ModelIdH\x00\x88\x01\x01\x42\x0b\n\t_model_id\"8\n\nObjectList\x12*\n\x07objects\x18\x01 \x03(\x0b\x32\x19.dlubal.api.common.Object\"\xa9\x01\n\x18PlausibilityCheckRequest\x12\x36\n\x04type\x18\x01 \x01(\x0e\x32(.dlubal.api.common.PlausibilityCheckType\x12\x15\n\rskip_warnings\x18\x02 \x01(\x08\x12\x31\n\x08model_id\x18\x03 \x01(\x0b\x32\x1a.dlubal.api.common.ModelIdH\x00\x88\x01\x01\x42\x0b\n\t_model_id\"l\n\x13\x43\x61lculateAllRequest\x12\x15\n\rskip_warnings\x18\x01 \x01(\x08\x12\x31\n\x08model_id\x18\x02 \x01(\x0b\x32\x1a.dlubal.api.common.ModelIdH\x00\x88\x01\x01\x42\x0b\n\t_model_id\"b\n\x0fOperationResult\x12\x11\n\tsucceeded\x18\x01 \x01(\x08\x12\x11\n\x04\x64\x61ta\x18\x02 \x01(\tH\x00\x88\x01\x01\x12\x14\n\x07message\x18\x03 \x01(\tH\x01\x88\x01\x01\x42\x07\n\x05_dataB\n\n\x08_message\"\xe0\x01\n\x13ModelMainParameters\x12\x10\n\x08model_id\x18\x01 \x01(\t\x12\x12\n\nmodel_name\x18\x02 \x01(\t\x12\x19\n\x11model_description\x18\x03 \x01(\t\x12\x15\n\rmodel_comment\x18\x04 \x01(\t\x12\x12\n\nmodel_path\x18\x05 \x01(\t\x12\x12\n\nproject_id\x18\x06 \x01(\t\x12\x14\n\x0cproject_name\x18\x07 \x01(\t\x12\x1b\n\x13project_description\x18\x08 \x01(\t\x12\x16\n\x0eproject_folder\x18\t \x01(\t\"\x83\x01\n\x15\x43onvertObjectsRequest\x12:\n\x0c\x63onvert_into\x18\x01 \x01(\x0e\x32$.dlubal.api.common.ConvertObjectInto\x12.\n\x07objects\x18\x02 \x01(\x0b\x32\x1d.dlubal.api.common.ObjectList\"\x97\x01\n\x12ImportModelRequest\x12\x10\n\x08\x66ilepath\x18\x01 \x01(\t\x12/\n\x11import_attributes\x18\x02 \x01(\x0b\x32\x14.google.protobuf.Any\x12\x31\n\x08model_id\x18\x03 \x01(\x0b\x32\x1a.dlubal.api.common.ModelIdH\x00\x88\x01\x01\x42\x0b\n\t_model_id\"\x97\x01\n\x12\x45xportModelRequest\x12\x10\n\x08\x66ilepath\x18\x01 \x01(\t\x12/\n\x11\x65xport_attributes\x18\x02 \x01(\x0b\x32\x14.google.protobuf.Any\x12\x31\n\x08model_id\x18\x03 \x01(\x0b\x32\x1a.dlubal.api.common.ModelIdH\x00\x88\x01\x01\x42\x0b\n\t_model_id*\xf1\x01\n\x0f\x41pplicationType\x12\x1b\n\x17\x41PPLICATION_UNSPECIFIED\x10\x00\x12\x1d\n\x19\x41PPLICATION_DLUBAL_CENTER\x10\x01\x12\x1d\n\x19\x41PPLICATION_REPORT_VIEWER\x10\x02\x12\x14\n\x10\x41PPLICATION_RFEM\x10\x03\x12\x15\n\x11\x41PPLICATION_RSTAB\x10\x04\x12\x18\n\x14\x41PPLICATION_RSECTION\x10\x05\x12\x1c\n\x18\x41PPLICATION_WEB_SECTIONS\x10\x06\x12\x1e\n\x1a\x41PPLICATION_CRASH_REPORTER\x10\x07*\xd3\x01\n\x15PlausibilityCheckType\x12\"\n\x1ePLAUSIBILITY_CHECK_UNSPECIFIED\x10\x00\x12%\n!PLAUSIBILITY_CHECK_MESH_GENERATOR\x10\x01\x12\"\n\x1ePLAUSIBILITY_CHECK_CALCULATION\x10\x02\x12)\n%PLAUSIBILITY_CHECK_PLAUSIBILITY_CHECK\x10\x03\x12 \n\x1cPLAUSIBILITY_CHECK_PART_LIST\x10\x04*\xd8\x01\n\x11\x43onvertObjectInto\x12#\n\x1f\x43ONVERT_OBJECT_INTO_UNSPECIFIED\x10\x00\x12+\n\'CONVERT_IFC_OBJECT_INTO_STRAIGHT_MEMBER\x10\x01\x12)\n%CONVERT_IFC_OBJECT_INTO_CURVED_MEMBER\x10\x02\x12#\n\x1f\x43ONVERT_IFC_OBJECT_INTO_SURFACE\x10\x03\x12!\n\x1d\x43ONVERT_IFC_OBJECT_INTO_SOLID\x10\x04\x62\x06proto3')
30
+
31
+ _globals = globals()
32
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
33
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.common.common_messages_pb2', _globals)
34
+ if not _descriptor._USE_C_DESCRIPTORS:
35
+ DESCRIPTOR._loaded_options = None
36
+ _globals['_APPLICATIONTYPE']._serialized_start=2073
37
+ _globals['_APPLICATIONTYPE']._serialized_end=2314
38
+ _globals['_PLAUSIBILITYCHECKTYPE']._serialized_start=2317
39
+ _globals['_PLAUSIBILITYCHECKTYPE']._serialized_end=2528
40
+ _globals['_CONVERTOBJECTINTO']._serialized_start=2531
41
+ _globals['_CONVERTOBJECTINTO']._serialized_end=2747
42
+ _globals['_CREATEMODELREQUEST']._serialized_start=123
43
+ _globals['_CREATEMODELREQUEST']._serialized_end=203
44
+ _globals['_OPENMODELREQUEST']._serialized_start=205
45
+ _globals['_OPENMODELREQUEST']._serialized_end=237
46
+ _globals['_SAVEMODELASREQUEST']._serialized_start=239
47
+ _globals['_SAVEMODELASREQUEST']._serialized_end=351
48
+ _globals['_CLOSEMODELREQUEST']._serialized_start=353
49
+ _globals['_CLOSEMODELREQUEST']._serialized_end=458
50
+ _globals['_CLOSEALLMODELSREQUEST']._serialized_start=460
51
+ _globals['_CLOSEALLMODELSREQUEST']._serialized_end=505
52
+ _globals['_MODELINFO']._serialized_start=507
53
+ _globals['_MODELINFO']._serialized_end=574
54
+ _globals['_MODELLIST']._serialized_start=576
55
+ _globals['_MODELLIST']._serialized_end=637
56
+ _globals['_APPLICATIONINFO']._serialized_start=640
57
+ _globals['_APPLICATIONINFO']._serialized_end=849
58
+ _globals['_OBJECT']._serialized_start=851
59
+ _globals['_OBJECT']._serialized_end=961
60
+ _globals['_OBJECTLIST']._serialized_start=963
61
+ _globals['_OBJECTLIST']._serialized_end=1019
62
+ _globals['_PLAUSIBILITYCHECKREQUEST']._serialized_start=1022
63
+ _globals['_PLAUSIBILITYCHECKREQUEST']._serialized_end=1191
64
+ _globals['_CALCULATEALLREQUEST']._serialized_start=1193
65
+ _globals['_CALCULATEALLREQUEST']._serialized_end=1301
66
+ _globals['_OPERATIONRESULT']._serialized_start=1303
67
+ _globals['_OPERATIONRESULT']._serialized_end=1401
68
+ _globals['_MODELMAINPARAMETERS']._serialized_start=1404
69
+ _globals['_MODELMAINPARAMETERS']._serialized_end=1628
70
+ _globals['_CONVERTOBJECTSREQUEST']._serialized_start=1631
71
+ _globals['_CONVERTOBJECTSREQUEST']._serialized_end=1762
72
+ _globals['_IMPORTMODELREQUEST']._serialized_start=1765
73
+ _globals['_IMPORTMODELREQUEST']._serialized_end=1916
74
+ _globals['_EXPORTMODELREQUEST']._serialized_start=1919
75
+ _globals['_EXPORTMODELREQUEST']._serialized_end=2070
76
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,218 @@
1
+ from google.protobuf import any_pb2 as _any_pb2
2
+ from dlubal.api.common import model_id_pb2 as _model_id_pb2
3
+ from google.protobuf.internal import containers as _containers
4
+ from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
5
+ from google.protobuf import descriptor as _descriptor
6
+ from google.protobuf import message as _message
7
+ from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Mapping, Optional as _Optional, Union as _Union
8
+
9
+ DESCRIPTOR: _descriptor.FileDescriptor
10
+
11
+ class ApplicationType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
12
+ __slots__ = ()
13
+ APPLICATION_UNSPECIFIED: _ClassVar[ApplicationType]
14
+ APPLICATION_DLUBAL_CENTER: _ClassVar[ApplicationType]
15
+ APPLICATION_REPORT_VIEWER: _ClassVar[ApplicationType]
16
+ APPLICATION_RFEM: _ClassVar[ApplicationType]
17
+ APPLICATION_RSTAB: _ClassVar[ApplicationType]
18
+ APPLICATION_RSECTION: _ClassVar[ApplicationType]
19
+ APPLICATION_WEB_SECTIONS: _ClassVar[ApplicationType]
20
+ APPLICATION_CRASH_REPORTER: _ClassVar[ApplicationType]
21
+
22
+ class PlausibilityCheckType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
23
+ __slots__ = ()
24
+ PLAUSIBILITY_CHECK_UNSPECIFIED: _ClassVar[PlausibilityCheckType]
25
+ PLAUSIBILITY_CHECK_MESH_GENERATOR: _ClassVar[PlausibilityCheckType]
26
+ PLAUSIBILITY_CHECK_CALCULATION: _ClassVar[PlausibilityCheckType]
27
+ PLAUSIBILITY_CHECK_PLAUSIBILITY_CHECK: _ClassVar[PlausibilityCheckType]
28
+ PLAUSIBILITY_CHECK_PART_LIST: _ClassVar[PlausibilityCheckType]
29
+
30
+ class ConvertObjectInto(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
31
+ __slots__ = ()
32
+ CONVERT_OBJECT_INTO_UNSPECIFIED: _ClassVar[ConvertObjectInto]
33
+ CONVERT_IFC_OBJECT_INTO_STRAIGHT_MEMBER: _ClassVar[ConvertObjectInto]
34
+ CONVERT_IFC_OBJECT_INTO_CURVED_MEMBER: _ClassVar[ConvertObjectInto]
35
+ CONVERT_IFC_OBJECT_INTO_SURFACE: _ClassVar[ConvertObjectInto]
36
+ CONVERT_IFC_OBJECT_INTO_SOLID: _ClassVar[ConvertObjectInto]
37
+ APPLICATION_UNSPECIFIED: ApplicationType
38
+ APPLICATION_DLUBAL_CENTER: ApplicationType
39
+ APPLICATION_REPORT_VIEWER: ApplicationType
40
+ APPLICATION_RFEM: ApplicationType
41
+ APPLICATION_RSTAB: ApplicationType
42
+ APPLICATION_RSECTION: ApplicationType
43
+ APPLICATION_WEB_SECTIONS: ApplicationType
44
+ APPLICATION_CRASH_REPORTER: ApplicationType
45
+ PLAUSIBILITY_CHECK_UNSPECIFIED: PlausibilityCheckType
46
+ PLAUSIBILITY_CHECK_MESH_GENERATOR: PlausibilityCheckType
47
+ PLAUSIBILITY_CHECK_CALCULATION: PlausibilityCheckType
48
+ PLAUSIBILITY_CHECK_PLAUSIBILITY_CHECK: PlausibilityCheckType
49
+ PLAUSIBILITY_CHECK_PART_LIST: PlausibilityCheckType
50
+ CONVERT_OBJECT_INTO_UNSPECIFIED: ConvertObjectInto
51
+ CONVERT_IFC_OBJECT_INTO_STRAIGHT_MEMBER: ConvertObjectInto
52
+ CONVERT_IFC_OBJECT_INTO_CURVED_MEMBER: ConvertObjectInto
53
+ CONVERT_IFC_OBJECT_INTO_SURFACE: ConvertObjectInto
54
+ CONVERT_IFC_OBJECT_INTO_SOLID: ConvertObjectInto
55
+
56
+ class CreateModelRequest(_message.Message):
57
+ __slots__ = ("name", "template_path")
58
+ NAME_FIELD_NUMBER: _ClassVar[int]
59
+ TEMPLATE_PATH_FIELD_NUMBER: _ClassVar[int]
60
+ name: str
61
+ template_path: str
62
+ def __init__(self, name: _Optional[str] = ..., template_path: _Optional[str] = ...) -> None: ...
63
+
64
+ class OpenModelRequest(_message.Message):
65
+ __slots__ = ("path",)
66
+ PATH_FIELD_NUMBER: _ClassVar[int]
67
+ path: str
68
+ def __init__(self, path: _Optional[str] = ...) -> None: ...
69
+
70
+ class SaveModelAsRequest(_message.Message):
71
+ __slots__ = ("model_id", "path")
72
+ MODEL_ID_FIELD_NUMBER: _ClassVar[int]
73
+ PATH_FIELD_NUMBER: _ClassVar[int]
74
+ model_id: _model_id_pb2.ModelId
75
+ path: str
76
+ def __init__(self, model_id: _Optional[_Union[_model_id_pb2.ModelId, _Mapping]] = ..., path: _Optional[str] = ...) -> None: ...
77
+
78
+ class CloseModelRequest(_message.Message):
79
+ __slots__ = ("save_changes", "model_id")
80
+ SAVE_CHANGES_FIELD_NUMBER: _ClassVar[int]
81
+ MODEL_ID_FIELD_NUMBER: _ClassVar[int]
82
+ save_changes: bool
83
+ model_id: _model_id_pb2.ModelId
84
+ def __init__(self, save_changes: bool = ..., model_id: _Optional[_Union[_model_id_pb2.ModelId, _Mapping]] = ...) -> None: ...
85
+
86
+ class CloseAllModelsRequest(_message.Message):
87
+ __slots__ = ("save_changes",)
88
+ SAVE_CHANGES_FIELD_NUMBER: _ClassVar[int]
89
+ save_changes: bool
90
+ def __init__(self, save_changes: bool = ...) -> None: ...
91
+
92
+ class ModelInfo(_message.Message):
93
+ __slots__ = ("name", "guid", "path")
94
+ NAME_FIELD_NUMBER: _ClassVar[int]
95
+ GUID_FIELD_NUMBER: _ClassVar[int]
96
+ PATH_FIELD_NUMBER: _ClassVar[int]
97
+ name: str
98
+ guid: str
99
+ path: str
100
+ def __init__(self, name: _Optional[str] = ..., guid: _Optional[str] = ..., path: _Optional[str] = ...) -> None: ...
101
+
102
+ class ModelList(_message.Message):
103
+ __slots__ = ("model_info",)
104
+ MODEL_INFO_FIELD_NUMBER: _ClassVar[int]
105
+ model_info: _containers.RepeatedCompositeFieldContainer[ModelInfo]
106
+ def __init__(self, model_info: _Optional[_Iterable[_Union[ModelInfo, _Mapping]]] = ...) -> None: ...
107
+
108
+ class ApplicationInfo(_message.Message):
109
+ __slots__ = ("name", "type", "is_server_instance", "version", "full_version", "options", "language_name", "language_id")
110
+ NAME_FIELD_NUMBER: _ClassVar[int]
111
+ TYPE_FIELD_NUMBER: _ClassVar[int]
112
+ IS_SERVER_INSTANCE_FIELD_NUMBER: _ClassVar[int]
113
+ VERSION_FIELD_NUMBER: _ClassVar[int]
114
+ FULL_VERSION_FIELD_NUMBER: _ClassVar[int]
115
+ OPTIONS_FIELD_NUMBER: _ClassVar[int]
116
+ LANGUAGE_NAME_FIELD_NUMBER: _ClassVar[int]
117
+ LANGUAGE_ID_FIELD_NUMBER: _ClassVar[int]
118
+ name: str
119
+ type: ApplicationType
120
+ is_server_instance: bool
121
+ version: str
122
+ full_version: str
123
+ options: str
124
+ language_name: str
125
+ language_id: str
126
+ def __init__(self, name: _Optional[str] = ..., type: _Optional[_Union[ApplicationType, str]] = ..., is_server_instance: bool = ..., version: _Optional[str] = ..., full_version: _Optional[str] = ..., options: _Optional[str] = ..., language_name: _Optional[str] = ..., language_id: _Optional[str] = ...) -> None: ...
127
+
128
+ class Object(_message.Message):
129
+ __slots__ = ("object", "model_id")
130
+ OBJECT_FIELD_NUMBER: _ClassVar[int]
131
+ MODEL_ID_FIELD_NUMBER: _ClassVar[int]
132
+ object: _any_pb2.Any
133
+ model_id: _model_id_pb2.ModelId
134
+ def __init__(self, object: _Optional[_Union[_any_pb2.Any, _Mapping]] = ..., model_id: _Optional[_Union[_model_id_pb2.ModelId, _Mapping]] = ...) -> None: ...
135
+
136
+ class ObjectList(_message.Message):
137
+ __slots__ = ("objects",)
138
+ OBJECTS_FIELD_NUMBER: _ClassVar[int]
139
+ objects: _containers.RepeatedCompositeFieldContainer[Object]
140
+ def __init__(self, objects: _Optional[_Iterable[_Union[Object, _Mapping]]] = ...) -> None: ...
141
+
142
+ class PlausibilityCheckRequest(_message.Message):
143
+ __slots__ = ("type", "skip_warnings", "model_id")
144
+ TYPE_FIELD_NUMBER: _ClassVar[int]
145
+ SKIP_WARNINGS_FIELD_NUMBER: _ClassVar[int]
146
+ MODEL_ID_FIELD_NUMBER: _ClassVar[int]
147
+ type: PlausibilityCheckType
148
+ skip_warnings: bool
149
+ model_id: _model_id_pb2.ModelId
150
+ def __init__(self, type: _Optional[_Union[PlausibilityCheckType, str]] = ..., skip_warnings: bool = ..., model_id: _Optional[_Union[_model_id_pb2.ModelId, _Mapping]] = ...) -> None: ...
151
+
152
+ class CalculateAllRequest(_message.Message):
153
+ __slots__ = ("skip_warnings", "model_id")
154
+ SKIP_WARNINGS_FIELD_NUMBER: _ClassVar[int]
155
+ MODEL_ID_FIELD_NUMBER: _ClassVar[int]
156
+ skip_warnings: bool
157
+ model_id: _model_id_pb2.ModelId
158
+ def __init__(self, skip_warnings: bool = ..., model_id: _Optional[_Union[_model_id_pb2.ModelId, _Mapping]] = ...) -> None: ...
159
+
160
+ class OperationResult(_message.Message):
161
+ __slots__ = ("succeeded", "data", "message")
162
+ SUCCEEDED_FIELD_NUMBER: _ClassVar[int]
163
+ DATA_FIELD_NUMBER: _ClassVar[int]
164
+ MESSAGE_FIELD_NUMBER: _ClassVar[int]
165
+ succeeded: bool
166
+ data: str
167
+ message: str
168
+ def __init__(self, succeeded: bool = ..., data: _Optional[str] = ..., message: _Optional[str] = ...) -> None: ...
169
+
170
+ class ModelMainParameters(_message.Message):
171
+ __slots__ = ("model_id", "model_name", "model_description", "model_comment", "model_path", "project_id", "project_name", "project_description", "project_folder")
172
+ MODEL_ID_FIELD_NUMBER: _ClassVar[int]
173
+ MODEL_NAME_FIELD_NUMBER: _ClassVar[int]
174
+ MODEL_DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
175
+ MODEL_COMMENT_FIELD_NUMBER: _ClassVar[int]
176
+ MODEL_PATH_FIELD_NUMBER: _ClassVar[int]
177
+ PROJECT_ID_FIELD_NUMBER: _ClassVar[int]
178
+ PROJECT_NAME_FIELD_NUMBER: _ClassVar[int]
179
+ PROJECT_DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
180
+ PROJECT_FOLDER_FIELD_NUMBER: _ClassVar[int]
181
+ model_id: str
182
+ model_name: str
183
+ model_description: str
184
+ model_comment: str
185
+ model_path: str
186
+ project_id: str
187
+ project_name: str
188
+ project_description: str
189
+ project_folder: str
190
+ def __init__(self, model_id: _Optional[str] = ..., model_name: _Optional[str] = ..., model_description: _Optional[str] = ..., model_comment: _Optional[str] = ..., model_path: _Optional[str] = ..., project_id: _Optional[str] = ..., project_name: _Optional[str] = ..., project_description: _Optional[str] = ..., project_folder: _Optional[str] = ...) -> None: ...
191
+
192
+ class ConvertObjectsRequest(_message.Message):
193
+ __slots__ = ("convert_into", "objects")
194
+ CONVERT_INTO_FIELD_NUMBER: _ClassVar[int]
195
+ OBJECTS_FIELD_NUMBER: _ClassVar[int]
196
+ convert_into: ConvertObjectInto
197
+ objects: ObjectList
198
+ def __init__(self, convert_into: _Optional[_Union[ConvertObjectInto, str]] = ..., objects: _Optional[_Union[ObjectList, _Mapping]] = ...) -> None: ...
199
+
200
+ class ImportModelRequest(_message.Message):
201
+ __slots__ = ("filepath", "import_attributes", "model_id")
202
+ FILEPATH_FIELD_NUMBER: _ClassVar[int]
203
+ IMPORT_ATTRIBUTES_FIELD_NUMBER: _ClassVar[int]
204
+ MODEL_ID_FIELD_NUMBER: _ClassVar[int]
205
+ filepath: str
206
+ import_attributes: _any_pb2.Any
207
+ model_id: _model_id_pb2.ModelId
208
+ def __init__(self, filepath: _Optional[str] = ..., import_attributes: _Optional[_Union[_any_pb2.Any, _Mapping]] = ..., model_id: _Optional[_Union[_model_id_pb2.ModelId, _Mapping]] = ...) -> None: ...
209
+
210
+ class ExportModelRequest(_message.Message):
211
+ __slots__ = ("filepath", "export_attributes", "model_id")
212
+ FILEPATH_FIELD_NUMBER: _ClassVar[int]
213
+ EXPORT_ATTRIBUTES_FIELD_NUMBER: _ClassVar[int]
214
+ MODEL_ID_FIELD_NUMBER: _ClassVar[int]
215
+ filepath: str
216
+ export_attributes: _any_pb2.Any
217
+ model_id: _model_id_pb2.ModelId
218
+ def __init__(self, filepath: _Optional[str] = ..., export_attributes: _Optional[_Union[_any_pb2.Any, _Mapping]] = ..., model_id: _Optional[_Union[_model_id_pb2.ModelId, _Mapping]] = ...) -> None: ...
@@ -0,0 +1,46 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: dlubal/api/common/common.proto
5
+ # Protobuf Python Version: 5.28.1
6
+ """Generated protocol buffer code."""
7
+ from google.protobuf import descriptor as _descriptor
8
+ from google.protobuf import descriptor_pool as _descriptor_pool
9
+ from google.protobuf import runtime_version as _runtime_version
10
+ from google.protobuf import symbol_database as _symbol_database
11
+ from google.protobuf.internal import builder as _builder
12
+ _runtime_version.ValidateProtobufRuntimeVersion(
13
+ _runtime_version.Domain.PUBLIC,
14
+ 5,
15
+ 28,
16
+ 1,
17
+ '',
18
+ 'dlubal/api/common/common.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+
26
+
27
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1e\x64lubal/api/common/common.proto\x12\x11\x64lubal.api.common\"+\n\x08Vector3d\x12\t\n\x01x\x18\x01 \x01(\x01\x12\t\n\x01y\x18\x02 \x01(\x01\x12\t\n\x01z\x18\x03 \x01(\x01\"\x16\n\x05\x43olor\x12\r\n\x05value\x18\x01 \x01(\t\"\x9e\x01\n\x05Value\x12\x32\n\nnull_value\x18\x01 \x01(\x0e\x32\x1c.dlubal.api.common.NullValueH\x00\x12\x13\n\tint_value\x18\x02 \x01(\x05H\x00\x12\x16\n\x0c\x64ouble_value\x18\x03 \x01(\x01H\x00\x12\x16\n\x0cstring_value\x18\x04 \x01(\tH\x00\x12\x14\n\nbool_value\x18\x05 \x01(\x08H\x00\x42\x06\n\x04kind\"\xaf\x02\n\x1e\x43oordinateSystemRepresentation\x12\x0c\n\x02no\x18\x01 \x01(\x05H\x00\x12V\n\x04type\x18\x02 \x01(\x0e\x32\x46.dlubal.api.common.CoordinateSystemRepresentation.CoordinateSystemTypeH\x00\"\x82\x01\n\x14\x43oordinateSystemType\x12\"\n\x1e\x43OORDINATE_SYSTEM_TYPE_UNKNOWN\x10\x00\x12 \n\x1c\x43OORDINATE_SYSTEM_TYPE_LOCAL\x10\x01\x12$\n COORDINATE_SYSTEM_TYPE_PRINCIPAL\x10\x02\x42\"\n coordinate_system_representation*\x1b\n\tNullValue\x12\x0e\n\nNULL_VALUE\x10\x00\x62\x06proto3')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.common.common_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_NULLVALUE']._serialized_start=589
35
+ _globals['_NULLVALUE']._serialized_end=616
36
+ _globals['_VECTOR3D']._serialized_start=53
37
+ _globals['_VECTOR3D']._serialized_end=96
38
+ _globals['_COLOR']._serialized_start=98
39
+ _globals['_COLOR']._serialized_end=120
40
+ _globals['_VALUE']._serialized_start=123
41
+ _globals['_VALUE']._serialized_end=281
42
+ _globals['_COORDINATESYSTEMREPRESENTATION']._serialized_start=284
43
+ _globals['_COORDINATESYSTEMREPRESENTATION']._serialized_end=587
44
+ _globals['_COORDINATESYSTEMREPRESENTATION_COORDINATESYSTEMTYPE']._serialized_start=421
45
+ _globals['_COORDINATESYSTEMREPRESENTATION_COORDINATESYSTEMTYPE']._serialized_end=551
46
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,57 @@
1
+ from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
2
+ from google.protobuf import descriptor as _descriptor
3
+ from google.protobuf import message as _message
4
+ from typing import ClassVar as _ClassVar, Optional as _Optional, Union as _Union
5
+
6
+ DESCRIPTOR: _descriptor.FileDescriptor
7
+
8
+ class NullValue(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
9
+ __slots__ = ()
10
+ NULL_VALUE: _ClassVar[NullValue]
11
+ NULL_VALUE: NullValue
12
+
13
+ class Vector3d(_message.Message):
14
+ __slots__ = ("x", "y", "z")
15
+ X_FIELD_NUMBER: _ClassVar[int]
16
+ Y_FIELD_NUMBER: _ClassVar[int]
17
+ Z_FIELD_NUMBER: _ClassVar[int]
18
+ x: float
19
+ y: float
20
+ z: float
21
+ def __init__(self, x: _Optional[float] = ..., y: _Optional[float] = ..., z: _Optional[float] = ...) -> None: ...
22
+
23
+ class Color(_message.Message):
24
+ __slots__ = ("value",)
25
+ VALUE_FIELD_NUMBER: _ClassVar[int]
26
+ value: str
27
+ def __init__(self, value: _Optional[str] = ...) -> None: ...
28
+
29
+ class Value(_message.Message):
30
+ __slots__ = ("null_value", "int_value", "double_value", "string_value", "bool_value")
31
+ NULL_VALUE_FIELD_NUMBER: _ClassVar[int]
32
+ INT_VALUE_FIELD_NUMBER: _ClassVar[int]
33
+ DOUBLE_VALUE_FIELD_NUMBER: _ClassVar[int]
34
+ STRING_VALUE_FIELD_NUMBER: _ClassVar[int]
35
+ BOOL_VALUE_FIELD_NUMBER: _ClassVar[int]
36
+ null_value: NullValue
37
+ int_value: int
38
+ double_value: float
39
+ string_value: str
40
+ bool_value: bool
41
+ def __init__(self, null_value: _Optional[_Union[NullValue, str]] = ..., int_value: _Optional[int] = ..., double_value: _Optional[float] = ..., string_value: _Optional[str] = ..., bool_value: bool = ...) -> None: ...
42
+
43
+ class CoordinateSystemRepresentation(_message.Message):
44
+ __slots__ = ("no", "type")
45
+ class CoordinateSystemType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
46
+ __slots__ = ()
47
+ COORDINATE_SYSTEM_TYPE_UNKNOWN: _ClassVar[CoordinateSystemRepresentation.CoordinateSystemType]
48
+ COORDINATE_SYSTEM_TYPE_LOCAL: _ClassVar[CoordinateSystemRepresentation.CoordinateSystemType]
49
+ COORDINATE_SYSTEM_TYPE_PRINCIPAL: _ClassVar[CoordinateSystemRepresentation.CoordinateSystemType]
50
+ COORDINATE_SYSTEM_TYPE_UNKNOWN: CoordinateSystemRepresentation.CoordinateSystemType
51
+ COORDINATE_SYSTEM_TYPE_LOCAL: CoordinateSystemRepresentation.CoordinateSystemType
52
+ COORDINATE_SYSTEM_TYPE_PRINCIPAL: CoordinateSystemRepresentation.CoordinateSystemType
53
+ NO_FIELD_NUMBER: _ClassVar[int]
54
+ TYPE_FIELD_NUMBER: _ClassVar[int]
55
+ no: int
56
+ type: CoordinateSystemRepresentation.CoordinateSystemType
57
+ def __init__(self, no: _Optional[int] = ..., type: _Optional[_Union[CoordinateSystemRepresentation.CoordinateSystemType, str]] = ...) -> None: ...
@@ -0,0 +1,248 @@
1
+ ''' Definition file '''
2
+ import os
3
+ import ssl
4
+ import grpc
5
+
6
+ from pathlib import Path
7
+ from configparser import ConfigParser
8
+ from pkg_resources import get_distribution, DistributionNotFound
9
+
10
+ # Enable prompt option for testing purposes
11
+ prompt = False
12
+
13
+ options = [
14
+ ('grpc.max_send_message_length', -1),
15
+ ('grpc.max_receive_message_length', -1),
16
+ ]
17
+ compression = grpc.Compression.Gzip # https://grpc.io/docs/guides/compression/
18
+
19
+ class _config():
20
+ def __init__(self):
21
+ '''
22
+ Read config file. It is doesn't exist, create one.
23
+ '''
24
+ self.config = ConfigParser()
25
+ self.config_loc = Path(Path(__file__).parents[1], 'config.ini')
26
+ # Parse existing file
27
+ if os.path.isfile(self.config_loc):
28
+ self.config.read(self.config_loc)
29
+
30
+ def _save_to_file(self):
31
+ '''
32
+ Save current config file
33
+ '''
34
+ with open(self.config_loc, 'w', encoding="utf-8") as config_file:
35
+ self.config.write(config_file)
36
+
37
+ def get_name_of_default(self):
38
+ '''
39
+ Return first name of the API key, which was set as default
40
+ '''
41
+ all_items = self.config.items('api_keys')
42
+ all_keys = self.config.options('api_keys')
43
+ if 'default' in all_keys:
44
+ default_value = self.config.get('api_keys', 'default')
45
+ for i in all_items:
46
+ if i[0] != 'default' and i[1] == default_value:
47
+ return i[0]
48
+ return None
49
+
50
+ def _set(self, section, key, value):
51
+ '''
52
+ Set value and save config into file
53
+ '''
54
+ self.config.set(section, key, value)
55
+ self._save_to_file()
56
+
57
+ def get_value(self, key):
58
+ '''
59
+ Get API key from config
60
+ '''
61
+ value = None
62
+ if self.config.has_section('api_keys'):
63
+ value = self.config.get('api_keys', key, fallback=None)
64
+ if value and value.startswith(('AK', 'ak')):
65
+ # Set default
66
+ self._set('api_keys', 'default', value)
67
+ return value
68
+
69
+ def set_value(self, key, value):
70
+ '''
71
+ Set API key into config
72
+ '''
73
+ if self.config.has_section('api_keys'):
74
+ self._set('api_keys', key, value)
75
+ else:
76
+ self.config.add_section('api_keys')
77
+ self._set('api_keys', key, value)
78
+ # Set default
79
+ self._set('api_keys', 'default', value)
80
+
81
+ def delete_value(self, section, key):
82
+ '''
83
+ Delete API key
84
+ '''
85
+ self.config.remove_option(section, key)
86
+
87
+
88
+ class _ApiKey():
89
+ '''
90
+ API key class to make it easy to manage API keys.
91
+ '''
92
+ def __init__(self, key=None , value=None):
93
+
94
+ self.key = key
95
+ self.value = value
96
+ self.config = _config()
97
+
98
+ if self.key and self.value:
99
+ # Check if API key is saved. If not, save it to config file.
100
+ if self.config.get_value(self.key) is None:
101
+ self.config.set_value(self.key, self.value)
102
+ elif self.key:
103
+ # Check if API key is saved, get it and put into self.value
104
+ self.value = self.config.get_value(self.key)
105
+ elif self.value:
106
+ # Providing value without key suggests user doesn't want to store it
107
+ # Don't even store any default value
108
+ pass
109
+ else:
110
+ # Key and value are None
111
+ # Check if there is any default key set in config
112
+ self.value = self.config.get_value('default')
113
+ if self.value:
114
+ default_key = self.config.get_name_of_default()
115
+ if default_key:
116
+ # Print only if key is found
117
+ print(f'API key: {self.config.get_name_of_default()}')
118
+
119
+ def get(self, key=None):
120
+ '''
121
+ Get API key
122
+ '''
123
+ if key:
124
+ self.value = self.config.get_value(key)
125
+ else:
126
+ self.value = self.config.get_value('default')
127
+
128
+ if self.value is None:
129
+ raise ValueError("Invalid API key idenficator or missing default value.")
130
+ return self.value
131
+
132
+ def set(self, key, value):
133
+ '''
134
+ Set APi key
135
+ '''
136
+ self.config.set_value(key, value)
137
+
138
+
139
+ class _ClientCallDetails(grpc.ClientCallDetails):
140
+ '''
141
+ Client call details class to pass authorization API key
142
+ '''
143
+ def __init__(self, call_details, metadata):
144
+ self.method = call_details.method
145
+ self.timeout = call_details.timeout
146
+ self.credentials = call_details.credentials
147
+ self.metadata = metadata
148
+
149
+ class AuthInterceptor(grpc.UnaryUnaryClientInterceptor):
150
+ '''
151
+ Authorization Unary Interceptor class
152
+ '''
153
+ def __init__(self, value):
154
+ self.api_key = value
155
+
156
+ # def intercept_call(self, continuation, client_call_details, request_or_iterator):
157
+ # client_version = get_distribution('dlubal.api').version
158
+ # call_details = _ClientCallDetails(client_call_details, [("authorization", f"Bearer {self.api_key}"),("api-client-info", f"Python | {client_version}"),])
159
+ # return continuation(call_details, request_or_iterator)
160
+
161
+ def intercept_call(self, continuation, client_call_details, request_or_iterator):
162
+ try:
163
+ client_version = get_distribution('dlubal.api').version
164
+ except DistributionNotFound:
165
+ # Package not installed, fallback to default version string
166
+ client_version = "dev"
167
+
168
+ call_details = _ClientCallDetails(
169
+ client_call_details,
170
+ [
171
+ ("authorization", f"Bearer {self.api_key}"),
172
+ ("api-client-info", f"Python | {client_version}"),
173
+ ]
174
+ )
175
+ return continuation(call_details, request_or_iterator)
176
+
177
+ def intercept_unary_unary(self, continuation, client_call_details, request):
178
+ return self.intercept_call(continuation, client_call_details, request)
179
+
180
+ def check_ssl(_ssl, _ssl_file):
181
+ '''
182
+ Check SSL certificate
183
+ Params:
184
+ _ssl (bool): False if NOT using SSL auth. True if using SSL certificate.
185
+ _ssl_file (str):Path to .crt/.pem certificate.
186
+ '''
187
+ if _ssl is False:
188
+ pass
189
+ elif _ssl is True:
190
+ if isinstance(_ssl_file, str) and os.path.isfile(_ssl_file) and _ssl_file.endswith(('.crt', '.pem')):
191
+ # Use provided file
192
+ pass
193
+ elif _ssl_file == '':
194
+ # Use Windows Certification Store
195
+ pass
196
+ else:
197
+ # Provided path is not correct
198
+ exit()
199
+
200
+ return True
201
+
202
+ def _get_ssl_credentials(_ssl_file) -> grpc.ChannelCredentials:
203
+ '''
204
+ Get SSL channel credentials by reading cert. file
205
+
206
+ Params:
207
+ path (str): Path to the SSL (.crt) certificate filepath
208
+ '''
209
+ if _ssl_file == '':
210
+ certs = ssl.create_default_context().get_ca_certs(True)
211
+ cert_string = ''
212
+ for cert in certs:
213
+ cert_string += ssl.DER_cert_to_PEM_cert(cert)
214
+ return grpc.ssl_channel_credentials(root_certificates=cert_string.encode('utf-8'))
215
+ else:
216
+ cert_file = open(_ssl_file, 'rb')
217
+ return grpc.ssl_channel_credentials(cert_file.read())
218
+
219
+ def init_channel(API_key, url, port, _ssl, _ssl_file):
220
+ '''
221
+ Initialize the gRPC channel with the provided API key.
222
+
223
+ Params:
224
+ API_key (str): Api key
225
+ url (str): URL number defaults to localhost (127.0.0.1)
226
+ port (int): Port number defaults to 9000
227
+ _ssl (bool): True if using SSL
228
+ _ssl_file (str): Path to SSL cert file
229
+ '''
230
+ channel = None
231
+ try:
232
+ if _ssl:
233
+ # Create secure channel
234
+ channel_credentials = _get_ssl_credentials(_ssl_file)
235
+ channel = grpc.secure_channel(f"{url}:{port}", channel_credentials, options, compression)
236
+ else:
237
+ # Create insecure channel
238
+ channel = grpc.insecure_channel(f"{url}:{port}", options, compression)
239
+
240
+ # Create gRPC interceptor
241
+ interceptor = AuthInterceptor(API_key)
242
+ channel = grpc.intercept_channel(channel, interceptor)
243
+
244
+ # All exceptions are handeled at the RFEM.__exit__()
245
+ except:
246
+ pass
247
+
248
+ return channel