qtmodel 0.9.3__tar.gz → 0.9.4__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 qtmodel might be problematic. Click here for more details.

@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: qtmodel
3
- Version: 0.9.3
4
- Summary: python modeling for qt 2025-06-30
3
+ Version: 0.9.4
4
+ Summary: python modeling for qt 2025-07-01
5
5
  Home-page: https://github.com/Inface0443/pyqt
6
6
  Author: dqy-zhj
7
7
  Author-email: 1105417715@qq.com
@@ -12,7 +12,7 @@ Classifier: Programming Language :: Python :: 3
12
12
  Classifier: Operating System :: OS Independent
13
13
  Description-Content-Type: text/markdown
14
14
 
15
- > 最新版本 V0.9.3 - 2025-06-30
15
+ > 最新版本 V0.9.4 - 2025-07-01
16
16
  > pip install --upgrade qtmodel -i https://pypi.org/simple
17
17
  - 新增更新结构组接口
18
18
  # 建模操作
@@ -155,7 +155,7 @@ mdb.export_file(file_path="a.mct")
155
155
  ```
156
156
  Returns: 无
157
157
  ## 分析设置
158
- ### update_general_setting
158
+ ### update_project_setting
159
159
  更新总体设置
160
160
  > 参数:
161
161
  > project: 项目名
@@ -169,7 +169,7 @@ Returns: 无
169
169
  ```Python
170
170
  # 示例代码
171
171
  from qtmodel import *
172
- mdb.update_general_setting(project="项目名",gravity=9.8,temperature=20)
172
+ mdb.update_project_setting(project="项目名",gravity=9.8,temperature=20)
173
173
  ```
174
174
  Returns: 无
175
175
  ### update_global_setting
@@ -1,4 +1,4 @@
1
- > 最新版本 V0.9.3 - 2025-06-30
1
+ > 最新版本 V0.9.4 - 2025-07-01
2
2
  > pip install --upgrade qtmodel -i https://pypi.org/simple
3
3
  - 新增更新结构组接口
4
4
  # 建模操作
@@ -141,7 +141,7 @@ mdb.export_file(file_path="a.mct")
141
141
  ```
142
142
  Returns: 无
143
143
  ## 分析设置
144
- ### update_general_setting
144
+ ### update_project_setting
145
145
  更新总体设置
146
146
  > 参数:
147
147
  > project: 项目名
@@ -155,7 +155,7 @@ Returns: 无
155
155
  ```Python
156
156
  # 示例代码
157
157
  from qtmodel import *
158
- mdb.update_general_setting(project="项目名",gravity=9.8,temperature=20)
158
+ mdb.update_project_setting(project="项目名",gravity=9.8,temperature=20)
159
159
  ```
160
160
  Returns: 无
161
161
  ### update_global_setting
@@ -223,7 +223,7 @@ class Mdb:
223
223
 
224
224
  # region 分析设置
225
225
  @staticmethod
226
- def update_general_setting(project: str = "", company: str = "", designer: str = "", reviewer: str = "",
226
+ def update_project_setting(project: str = "", company: str = "", designer: str = "", reviewer: str = "",
227
227
  date_time: str = "", gravity: float = 9.8, temperature: float = 0, description: str = "") -> None:
228
228
  """
229
229
  更新总体设置
@@ -237,12 +237,12 @@ class Mdb:
237
237
  temperature: 设计温度 (摄氏度)
238
238
  description: 说明
239
239
  Example:
240
- mdb.update_general_setting(project="项目名",gravity=9.8,temperature=20)
240
+ mdb.update_project_setting(project="项目名",gravity=9.8,temperature=20)
241
241
  Returns: 无
242
242
  """
243
243
  try:
244
- qt_model.update_general_setting(project=project, company=company, designer=designer, reviewer=reviewer,
245
- date_time=date_time, gravity=gravity, temperature=temperature, description=description)
244
+ qt_model.UpdateProjectSetting(project=project, company=company, designer=designer, reviewer=reviewer,
245
+ dateTime=date_time, gravity=gravity, temperature=temperature, description=description)
246
246
  except Exception as ex:
247
247
  raise Exception(ex)
248
248
 
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: qtmodel
3
- Version: 0.9.3
4
- Summary: python modeling for qt 2025-06-30
3
+ Version: 0.9.4
4
+ Summary: python modeling for qt 2025-07-01
5
5
  Home-page: https://github.com/Inface0443/pyqt
6
6
  Author: dqy-zhj
7
7
  Author-email: 1105417715@qq.com
@@ -12,7 +12,7 @@ Classifier: Programming Language :: Python :: 3
12
12
  Classifier: Operating System :: OS Independent
13
13
  Description-Content-Type: text/markdown
14
14
 
15
- > 最新版本 V0.9.3 - 2025-06-30
15
+ > 最新版本 V0.9.4 - 2025-07-01
16
16
  > pip install --upgrade qtmodel -i https://pypi.org/simple
17
17
  - 新增更新结构组接口
18
18
  # 建模操作
@@ -155,7 +155,7 @@ mdb.export_file(file_path="a.mct")
155
155
  ```
156
156
  Returns: 无
157
157
  ## 分析设置
158
- ### update_general_setting
158
+ ### update_project_setting
159
159
  更新总体设置
160
160
  > 参数:
161
161
  > project: 项目名
@@ -169,7 +169,7 @@ Returns: 无
169
169
  ```Python
170
170
  # 示例代码
171
171
  from qtmodel import *
172
- mdb.update_general_setting(project="项目名",gravity=9.8,temperature=20)
172
+ mdb.update_project_setting(project="项目名",gravity=9.8,temperature=20)
173
173
  ```
174
174
  Returns: 无
175
175
  ### update_global_setting
@@ -11,7 +11,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
11
11
 
12
12
  setup(
13
13
  name="qtmodel",
14
- version=f"V0.9.3",
14
+ version=f"V0.9.4",
15
15
  author="dqy-zhj",
16
16
  author_email="1105417715@qq.com",
17
17
  description=f"python modeling for qt {datetime.now().date()} ",
File without changes
File without changes
File without changes
File without changes