ansys-mechanical-core 0.11.13__py3-none-any.whl → 0.11.15__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- ansys/mechanical/core/__init__.py +3 -4
- ansys/mechanical/core/embedding/app.py +97 -12
- ansys/mechanical/core/embedding/appdata.py +26 -22
- ansys/mechanical/core/embedding/enum_importer.py +5 -0
- ansys/mechanical/core/embedding/global_importer.py +50 -0
- ansys/mechanical/core/embedding/{viz → graphics}/embedding_plotter.py +1 -1
- ansys/mechanical/core/embedding/imports.py +30 -58
- ansys/mechanical/core/embedding/initializer.py +76 -4
- ansys/mechanical/core/embedding/messages.py +195 -0
- ansys/mechanical/core/embedding/resolver.py +1 -1
- ansys/mechanical/core/embedding/rpc/__init__.py +3 -7
- ansys/mechanical/core/embedding/rpc/client.py +55 -19
- ansys/mechanical/core/embedding/rpc/default_server.py +131 -0
- ansys/mechanical/core/embedding/rpc/server.py +171 -162
- ansys/mechanical/core/embedding/rpc/utils.py +18 -2
- ansys/mechanical/core/embedding/runtime.py +6 -0
- ansys/mechanical/core/embedding/transaction.py +51 -0
- ansys/mechanical/core/ide_config.py +22 -7
- ansys/mechanical/core/mechanical.py +86 -18
- {ansys_mechanical_core-0.11.13.dist-info → ansys_mechanical_core-0.11.15.dist-info}/METADATA +21 -17
- ansys_mechanical_core-0.11.15.dist-info/RECORD +53 -0
- {ansys_mechanical_core-0.11.13.dist-info → ansys_mechanical_core-0.11.15.dist-info}/WHEEL +1 -1
- ansys_mechanical_core-0.11.13.dist-info/RECORD +0 -49
- /ansys/mechanical/core/embedding/{viz → graphics}/__init__.py +0 -0
- /ansys/mechanical/core/embedding/{viz → graphics}/usd_converter.py +0 -0
- /ansys/mechanical/core/embedding/{viz → graphics}/utils.py +0 -0
- {ansys_mechanical_core-0.11.13.dist-info → ansys_mechanical_core-0.11.15.dist-info}/entry_points.txt +0 -0
- {ansys_mechanical_core-0.11.13.dist-info → ansys_mechanical_core-0.11.15.dist-info/licenses}/LICENSE +0 -0
@@ -30,8 +30,11 @@ import glob
|
|
30
30
|
import os
|
31
31
|
import pathlib
|
32
32
|
import socket
|
33
|
+
import subprocess # nosec: B404
|
34
|
+
import sys
|
33
35
|
import threading
|
34
36
|
import time
|
37
|
+
import typing
|
35
38
|
from typing import Optional
|
36
39
|
import warnings
|
37
40
|
import weakref
|
@@ -458,10 +461,11 @@ class Mechanical(object):
|
|
458
461
|
else:
|
459
462
|
self.log_info("Mechanical connection is treated as remote.")
|
460
463
|
|
464
|
+
self._error_type = grpc.RpcError
|
465
|
+
|
461
466
|
# connect and validate to the channel
|
462
467
|
self._multi_connect(timeout=timeout)
|
463
468
|
self.log_info("Mechanical is ready to accept grpc calls.")
|
464
|
-
self._rpc_type = "grpc"
|
465
469
|
|
466
470
|
def __del__(self): # pragma: no cover
|
467
471
|
"""Clean up on exit."""
|
@@ -480,6 +484,11 @@ class Mechanical(object):
|
|
480
484
|
"""Log associated with the current Mechanical instance."""
|
481
485
|
return self._log
|
482
486
|
|
487
|
+
@property
|
488
|
+
def backend(self) -> str:
|
489
|
+
"""Return the backend type."""
|
490
|
+
return "mechanical"
|
491
|
+
|
483
492
|
@property
|
484
493
|
def version(self) -> str:
|
485
494
|
"""Get the Mechanical version based on the instance.
|
@@ -1202,9 +1211,9 @@ class Mechanical(object):
|
|
1202
1211
|
if progress_bar:
|
1203
1212
|
if not _HAS_TQDM: # pragma: no cover
|
1204
1213
|
raise ModuleNotFoundError(
|
1205
|
-
|
1206
|
-
|
1207
|
-
|
1214
|
+
"To use the keyword argument 'progress_bar', you must have "
|
1215
|
+
"installed the 'tqdm' package. To avoid this message, you can "
|
1216
|
+
"set 'progress_bar=False'."
|
1208
1217
|
)
|
1209
1218
|
|
1210
1219
|
n_bytes = os.path.getsize(file_name)
|
@@ -1942,6 +1951,49 @@ def launch_grpc(
|
|
1942
1951
|
return port
|
1943
1952
|
|
1944
1953
|
|
1954
|
+
def launch_rpyc(
|
1955
|
+
exec_file="",
|
1956
|
+
batch=True,
|
1957
|
+
port=MECHANICAL_DEFAULT_PORT,
|
1958
|
+
additional_switches=None,
|
1959
|
+
additional_envs=None,
|
1960
|
+
verbose=False,
|
1961
|
+
) -> typing.Tuple[int, subprocess.Popen]:
|
1962
|
+
"""Start Mechanical locally in RPyC mode."""
|
1963
|
+
_version = atp.version_from_path("mechanical", exec_file)
|
1964
|
+
|
1965
|
+
if not batch:
|
1966
|
+
raise Exception("The rpyc backend does not support graphical mode!")
|
1967
|
+
|
1968
|
+
# get the next available port
|
1969
|
+
local_ports = pymechanical.LOCAL_PORTS
|
1970
|
+
if port is None:
|
1971
|
+
if not local_ports:
|
1972
|
+
port = MECHANICAL_DEFAULT_PORT
|
1973
|
+
else:
|
1974
|
+
port = max(local_ports) + 1
|
1975
|
+
|
1976
|
+
while port_in_use(port) or port in local_ports:
|
1977
|
+
port += 1
|
1978
|
+
local_ports.append(port)
|
1979
|
+
|
1980
|
+
# TODO - use multiprocessing
|
1981
|
+
server_script = """
|
1982
|
+
import sys
|
1983
|
+
from ansys.mechanical.core.embedding.rpc import MechanicalDefaultServer
|
1984
|
+
server = MechanicalDefaultServer(port=int(sys.argv[1]), version=int(sys.argv[2]))
|
1985
|
+
server.start()
|
1986
|
+
"""
|
1987
|
+
try:
|
1988
|
+
embedded_server = subprocess.Popen(
|
1989
|
+
[sys.executable, "-c", server_script, str(port), str(_version)]
|
1990
|
+
) # nosec: B603
|
1991
|
+
except:
|
1992
|
+
raise RuntimeError("Unable to start the embedded server.")
|
1993
|
+
|
1994
|
+
return port, embedded_server
|
1995
|
+
|
1996
|
+
|
1945
1997
|
def launch_remote_mechanical(
|
1946
1998
|
version=None,
|
1947
1999
|
) -> (grpc.Channel, Optional["Instance"]): # pragma: no cover
|
@@ -2004,6 +2056,7 @@ def launch_mechanical(
|
|
2004
2056
|
cleanup_on_exit=True,
|
2005
2057
|
version=None,
|
2006
2058
|
keep_connection_alive=True,
|
2059
|
+
backend="mechanical",
|
2007
2060
|
) -> Mechanical:
|
2008
2061
|
"""Start Mechanical locally.
|
2009
2062
|
|
@@ -2086,6 +2139,9 @@ def launch_mechanical(
|
|
2086
2139
|
keep_connection_alive : bool, optional
|
2087
2140
|
Whether to keep the gRPC connection alive by running a background thread
|
2088
2141
|
and making dummy calls for remote connections. The default is ``True``.
|
2142
|
+
backend : str, optional
|
2143
|
+
Type of RPC to use. The default is ``"mechanical"`` which uses grpc.
|
2144
|
+
The other option is ``"python"`` which uses RPyC.
|
2089
2145
|
|
2090
2146
|
Returns
|
2091
2147
|
-------
|
@@ -2239,23 +2295,35 @@ def launch_mechanical(
|
|
2239
2295
|
"additional_envs": additional_envs,
|
2240
2296
|
}
|
2241
2297
|
|
2242
|
-
|
2243
|
-
|
2244
|
-
|
2245
|
-
|
2246
|
-
|
2247
|
-
|
2248
|
-
|
2249
|
-
|
2250
|
-
|
2298
|
+
if backend == "mechanical":
|
2299
|
+
try:
|
2300
|
+
port = launch_grpc(port=port, verbose=verbose_mechanical, **start_parm)
|
2301
|
+
start_parm["local"] = True
|
2302
|
+
mechanical = Mechanical(
|
2303
|
+
ip=ip,
|
2304
|
+
port=port,
|
2305
|
+
loglevel=loglevel,
|
2306
|
+
log_file=log_file,
|
2307
|
+
log_mechanical=log_mechanical,
|
2308
|
+
timeout=start_timeout,
|
2309
|
+
cleanup_on_exit=cleanup_on_exit,
|
2310
|
+
keep_connection_alive=keep_connection_alive,
|
2311
|
+
**start_parm,
|
2312
|
+
)
|
2313
|
+
except Exception as exception: # pragma: no cover
|
2314
|
+
# pass
|
2315
|
+
raise exception
|
2316
|
+
elif backend == "python":
|
2317
|
+
port, process = launch_rpyc(port=port, **start_parm)
|
2318
|
+
from ansys.mechanical.core.embedding.rpc.client import Client
|
2319
|
+
|
2320
|
+
mechanical = Client(
|
2321
|
+
"localhost",
|
2322
|
+
port,
|
2251
2323
|
timeout=start_timeout,
|
2252
2324
|
cleanup_on_exit=cleanup_on_exit,
|
2253
|
-
|
2254
|
-
**start_parm,
|
2325
|
+
process=process,
|
2255
2326
|
)
|
2256
|
-
except Exception as exception: # pragma: no cover
|
2257
|
-
# pass
|
2258
|
-
raise exception
|
2259
2327
|
|
2260
2328
|
return mechanical
|
2261
2329
|
|
{ansys_mechanical_core-0.11.13.dist-info → ansys_mechanical_core-0.11.15.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: ansys-mechanical-core
|
3
|
-
Version: 0.11.
|
3
|
+
Version: 0.11.15
|
4
4
|
Summary: A python wrapper for Ansys Mechanical
|
5
5
|
Keywords: pymechanical,mechanical,ansys,pyansys
|
6
6
|
Author-email: "ANSYS, Inc." <pyansys.core@ansys.com>
|
@@ -16,8 +16,9 @@ Classifier: Programming Language :: Python :: 3.12
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.13
|
17
17
|
Classifier: License :: OSI Approved :: MIT License
|
18
18
|
Classifier: Operating System :: OS Independent
|
19
|
+
License-File: LICENSE
|
19
20
|
Requires-Dist: ansys-api-mechanical==0.1.2
|
20
|
-
Requires-Dist: ansys-mechanical-env==0.1.
|
21
|
+
Requires-Dist: ansys-mechanical-env==0.1.12
|
21
22
|
Requires-Dist: ansys-mechanical-stubs==0.1.6
|
22
23
|
Requires-Dist: ansys-pythonnet>=3.1.0rc6
|
23
24
|
Requires-Dist: ansys-tools-path>=0.3.1
|
@@ -29,46 +30,49 @@ Requires-Dist: protobuf>=3.12.2,<6
|
|
29
30
|
Requires-Dist: psutil>=6
|
30
31
|
Requires-Dist: tqdm>=4.45.0
|
31
32
|
Requires-Dist: requests>=2,<3
|
32
|
-
Requires-Dist: sphinx==8.
|
33
|
-
Requires-Dist: ansys-sphinx-theme[autoapi, changelog]==1.
|
33
|
+
Requires-Dist: sphinx==8.2.3 ; extra == "doc"
|
34
|
+
Requires-Dist: ansys-sphinx-theme[autoapi, changelog]==1.4.2 ; extra == "doc"
|
34
35
|
Requires-Dist: grpcio==1.70.0 ; extra == "doc"
|
35
36
|
Requires-Dist: imageio-ffmpeg==0.6.0 ; extra == "doc"
|
36
37
|
Requires-Dist: imageio==2.37.0 ; extra == "doc"
|
37
38
|
Requires-Dist: jupyter_sphinx==0.5.3 ; extra == "doc"
|
38
39
|
Requires-Dist: jupyterlab>=3.2.8 ; extra == "doc"
|
39
|
-
Requires-Dist: matplotlib==3.10.
|
40
|
-
Requires-Dist: numpy==2.2.
|
40
|
+
Requires-Dist: matplotlib==3.10.1 ; extra == "doc"
|
41
|
+
Requires-Dist: numpy==2.2.5 ; extra == "doc"
|
41
42
|
Requires-Dist: numpydoc==1.8.0 ; extra == "doc"
|
42
43
|
Requires-Dist: pandas==2.2.3 ; extra == "doc"
|
43
|
-
Requires-Dist: panel==1.6.
|
44
|
-
Requires-Dist: plotly==6.0.
|
44
|
+
Requires-Dist: panel==1.6.1 ; extra == "doc"
|
45
|
+
Requires-Dist: plotly==6.0.1 ; extra == "doc"
|
45
46
|
Requires-Dist: pypandoc==1.15 ; extra == "doc"
|
46
47
|
Requires-Dist: pytest-sphinx==0.6.3 ; extra == "doc"
|
47
48
|
Requires-Dist: pythreejs==2.4.2 ; extra == "doc"
|
48
49
|
Requires-Dist: pyvista>=0.39.1 ; extra == "doc"
|
49
50
|
Requires-Dist: sphinx-autobuild==2024.10.3 ; extra == "doc"
|
50
|
-
Requires-Dist: sphinx-autodoc-typehints==3.0
|
51
|
+
Requires-Dist: sphinx-autodoc-typehints==3.1.0 ; extra == "doc"
|
51
52
|
Requires-Dist: sphinx-copybutton==0.5.2 ; extra == "doc"
|
52
53
|
Requires-Dist: sphinx_design==0.6.1 ; extra == "doc"
|
53
|
-
Requires-Dist: sphinx-gallery==0.
|
54
|
+
Requires-Dist: sphinx-gallery==0.19.0 ; extra == "doc"
|
54
55
|
Requires-Dist: sphinx-notfound-page==1.1.0 ; extra == "doc"
|
55
56
|
Requires-Dist: sphinxcontrib-websupport==2.0.0 ; extra == "doc"
|
56
57
|
Requires-Dist: sphinxemoji==0.3.1 ; extra == "doc"
|
58
|
+
Requires-Dist: ansys-tools-visualization-interface>=0.2.6 ; extra == "graphics"
|
59
|
+
Requires-Dist: usd-core==25.5 ; extra == "graphics"
|
57
60
|
Requires-Dist: ansys-platform-instancemanagement>=1.0.1 ; extra == "pim"
|
58
|
-
Requires-Dist: rpyc==6.0.
|
61
|
+
Requires-Dist: rpyc==6.0.2 ; extra == "rpc"
|
59
62
|
Requires-Dist: toolz==1.0.0 ; extra == "rpc"
|
60
|
-
Requires-Dist: pytest==8.3.
|
61
|
-
Requires-Dist: pytest-cov==6.
|
62
|
-
Requires-Dist: pytest-print==1.0
|
63
|
-
Requires-Dist: psutil==
|
63
|
+
Requires-Dist: pytest==8.3.5 ; extra == "tests"
|
64
|
+
Requires-Dist: pytest-cov==6.1.1 ; extra == "tests"
|
65
|
+
Requires-Dist: pytest-print==1.1.0 ; extra == "tests"
|
66
|
+
Requires-Dist: psutil==7.0.0 ; extra == "tests"
|
64
67
|
Requires-Dist: ansys-tools-visualization-interface>=0.2.6 ; extra == "viz"
|
65
|
-
Requires-Dist: usd-core==
|
68
|
+
Requires-Dist: usd-core==25.5 ; extra == "viz"
|
66
69
|
Project-URL: Changelog, https://mechanical.docs.pyansys.com/version/stable/changelog.html
|
67
70
|
Project-URL: Documentation, https://mechanical.docs.pyansys.com
|
68
71
|
Project-URL: Homepage, https://github.com/ansys/pymechanical
|
69
72
|
Project-URL: Issues, https://github.com/ansys/pymechanical/issues
|
70
73
|
Project-URL: Repository, https://github.com/ansys/pymechanical
|
71
74
|
Provides-Extra: doc
|
75
|
+
Provides-Extra: graphics
|
72
76
|
Provides-Extra: pim
|
73
77
|
Provides-Extra: rpc
|
74
78
|
Provides-Extra: tests
|
@@ -0,0 +1,53 @@
|
|
1
|
+
ansys/mechanical/core/__init__.py,sha256=Xms2JFo4k9XLej_v_FjkPrL3sKCVBOVedYWg_xpLSq8,2468
|
2
|
+
ansys/mechanical/core/_version.py,sha256=nRlEBl4c6kNOE78hhqJwYuPk86jhu70lOSRuZphT81M,1763
|
3
|
+
ansys/mechanical/core/errors.py,sha256=k0hJ89FwbFexLsjVApCbqfy2K7d-MekTPf3-QdtXZK4,4508
|
4
|
+
ansys/mechanical/core/feature_flags.py,sha256=bIRHaURLi70Yor1aJH3Fhlt9xvvyr9GG7JcJ1V59GNg,2078
|
5
|
+
ansys/mechanical/core/ide_config.py,sha256=52LSLVQQJxcPxmii8plvsSgfzDt55kSI7M9z7mUuEv0,7784
|
6
|
+
ansys/mechanical/core/launcher.py,sha256=Rd5kDcC58MZIjsk2d40Bx4qc0DVHzrYuNA3irDvsFKA,6675
|
7
|
+
ansys/mechanical/core/logging.py,sha256=TmIY5L-IrkyAQMKszotcbVCxyHLsMZQDAwbvcrSKwfs,24554
|
8
|
+
ansys/mechanical/core/mechanical.py,sha256=Hc91dDJ_T2Kwhg1Dc1n-avsxCiUbTpzVdLGn4f-DJiM,85726
|
9
|
+
ansys/mechanical/core/misc.py,sha256=f_LjwIvCGaHSIKJ6LuREbCr7gbv9rg2aFQaQ28Edna8,5369
|
10
|
+
ansys/mechanical/core/pool.py,sha256=xii4fNxNH_Xnyom9-ZpvsyXCxoUxa2mDu8brS339B2Y,26572
|
11
|
+
ansys/mechanical/core/run.py,sha256=wUsGPyZx2NwNlrdzIO1cWmDAZeZU0tOY1OvT-8pqjaw,9928
|
12
|
+
ansys/mechanical/core/embedding/__init__.py,sha256=QAUe-offKZZDPz0IYBIUtYi4Dgt02_U93yTeSWXO9fU,1356
|
13
|
+
ansys/mechanical/core/embedding/addins.py,sha256=6n3wCaD36cBbXWCbpniuABgvW6uBSN6xYXA5KkNgfLg,2167
|
14
|
+
ansys/mechanical/core/embedding/app.py,sha256=fXfUtVL19g1j9pSGyYqG8zoQMAdJ8hEhAoEaX9Yb1lY,24894
|
15
|
+
ansys/mechanical/core/embedding/app_libraries.py,sha256=_czRZ5cPwRo9SIZNitlgmBf2riLdzlGmmD4BJt9Nvng,2922
|
16
|
+
ansys/mechanical/core/embedding/appdata.py,sha256=lHhuLFQpXR5vHOGIS8BACezb03MyPXphGqV1xHuOE_k,4407
|
17
|
+
ansys/mechanical/core/embedding/background.py,sha256=dNwi45q8y8iXpMKathDMQd2k7CUfl4X6wIhngQvJcEc,4178
|
18
|
+
ansys/mechanical/core/embedding/cleanup_gui.py,sha256=TEF3l4A7UxMacmlkUwBBymTdqM6h8Be9piID4Hpn_jg,2354
|
19
|
+
ansys/mechanical/core/embedding/enum_importer.py,sha256=CWutE0jzAw_TSMMMxyWs9UeFmR97-tfOF7z-V6ZNMWM,1783
|
20
|
+
ansys/mechanical/core/embedding/global_importer.py,sha256=Ww-tVXx0fCXC8-_yZxzbpr3I1xJ49c80ZBdAWHwvbh0,2188
|
21
|
+
ansys/mechanical/core/embedding/imports.py,sha256=uRror4o4PGUjnUPF_dZXkHP5uy1dIdWdqkeN0jbwbY4,3414
|
22
|
+
ansys/mechanical/core/embedding/initializer.py,sha256=A9dllVcvpbxvwhk5qmVrJBZhHe7bip5jwHcnDxY2w5Y,10570
|
23
|
+
ansys/mechanical/core/embedding/loader.py,sha256=e2KWBrVv5001MP6DPJWI0UwrEauUnlTLpz9X6WYFdhk,2503
|
24
|
+
ansys/mechanical/core/embedding/messages.py,sha256=VQy_XZlWxVXL_4lAVYJ4Vln3s1hhbqKQYIpsQXixk0Q,6759
|
25
|
+
ansys/mechanical/core/embedding/poster.py,sha256=-V1GYrvRDyv8nbaBJze7Uo3PUb1hfOIidf1YI7-cT60,3065
|
26
|
+
ansys/mechanical/core/embedding/resolver.py,sha256=cV5rj00-NcfaVjAZE-EI-X1ttF55SE68FbwHfE9tFf8,2199
|
27
|
+
ansys/mechanical/core/embedding/runtime.py,sha256=3aYjNQZqeYCsCU_IBWAzj7C5IiUHHjSmXKRFU2XfNn8,3423
|
28
|
+
ansys/mechanical/core/embedding/shims.py,sha256=LP5px-ED4JNbqFEpYnmBkGiGDdfDkLQ-v1tNnPbz3E8,1732
|
29
|
+
ansys/mechanical/core/embedding/transaction.py,sha256=rU68v9CTrbZ9yQmAtbQDHoKpj5TcoCWmCnSX08pT7JM,2053
|
30
|
+
ansys/mechanical/core/embedding/ui.py,sha256=1XXkKSvui9iHKGqFROJQZMW-3iY-Hh2i1Ixq8Iav8cY,8480
|
31
|
+
ansys/mechanical/core/embedding/utils.py,sha256=7KSFCl9VM_WhrQEtI3Jc9OwhmH9wI7PH0n17ab_ytfo,1900
|
32
|
+
ansys/mechanical/core/embedding/warnings.py,sha256=Iyo95YOneMdCxOImXjnohhQZ86tD3xcnvJPUstlvHy0,3071
|
33
|
+
ansys/mechanical/core/embedding/graphics/__init__.py,sha256=KHZQAzlfgEVhi-G0msA6ca1o-2RecoNGzkpYfBIoCTA,1206
|
34
|
+
ansys/mechanical/core/embedding/graphics/embedding_plotter.py,sha256=Q2BGY1FhIb3pcHG0jBU2va6iMra58zmAG-K9hYgrDJ8,3703
|
35
|
+
ansys/mechanical/core/embedding/graphics/usd_converter.py,sha256=kMKmGLThbWf7iR9bYn24mdmgKBkLDdkwdHrOokFvg_U,5329
|
36
|
+
ansys/mechanical/core/embedding/graphics/utils.py,sha256=AYvp0okbEk3y9611eGAtvhgh65ytfpHkywVT7qk_liQ,3660
|
37
|
+
ansys/mechanical/core/embedding/logger/__init__.py,sha256=6NZHzFXzHHlV_NAa1gZsLyQjsRK3kBODvYwcCum9vSU,7998
|
38
|
+
ansys/mechanical/core/embedding/logger/environ.py,sha256=Jo9OEyag2ub_DIshxEX6Re8UzIrXCfmge5hFrn3exKk,5757
|
39
|
+
ansys/mechanical/core/embedding/logger/linux_api.py,sha256=wM95m4ArlF3gvqKFvKP7DzWWRHSngB3fe51D26CUD3Y,5988
|
40
|
+
ansys/mechanical/core/embedding/logger/sinks.py,sha256=-lAS-M7k3WHAblbrM7nzpOBJiCjN8e6i52GoEeQo_gE,1392
|
41
|
+
ansys/mechanical/core/embedding/logger/windows_api.py,sha256=GoFPfO-_umcCRAQeYrEdYQCTYpeNLB_IrY4hHh_LmTo,5276
|
42
|
+
ansys/mechanical/core/embedding/rpc/__init__.py,sha256=ZeAY476wDv016lUoMdns3iqUYDlBYvc48JRYTKDVcMk,1482
|
43
|
+
ansys/mechanical/core/embedding/rpc/client.py,sha256=VaSuYnghXbl9Tb9OfMn8nh8JcEMXc_EUYgtrEWktjIQ,10013
|
44
|
+
ansys/mechanical/core/embedding/rpc/default_server.py,sha256=l6Xx-5mizpHHBWDGc-J_wU0bY99qka264MuyQ_Zyg7s,4788
|
45
|
+
ansys/mechanical/core/embedding/rpc/server.py,sha256=lYnSJyQm1dDytR_Hts280C5EldXjnxnGDPc3biDGhfY,13225
|
46
|
+
ansys/mechanical/core/embedding/rpc/utils.py,sha256=SKEYy-XoukyjzARH4yAdb4DVnWuU_2SbxprLU49p-9o,4666
|
47
|
+
ansys/mechanical/core/examples/__init__.py,sha256=Y0T8CKmaALL3diLfhsz3opfBgckD85DfHdzDrVsSwzg,1267
|
48
|
+
ansys/mechanical/core/examples/downloads.py,sha256=5_Krq3HqVeAeD4z3dx9uujLk1u6rPFoAuwQus9eYWjg,4295
|
49
|
+
ansys_mechanical_core-0.11.15.dist-info/entry_points.txt,sha256=tErx6bIM27HGgwyM6ryyTUTw30Ab2F9J3FFkX2TPkhI,130
|
50
|
+
ansys_mechanical_core-0.11.15.dist-info/licenses/LICENSE,sha256=AVOPDv4UX26lKidhDvFf_fMR13Pr-n4wVAYSVyvD7Ww,1098
|
51
|
+
ansys_mechanical_core-0.11.15.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
|
52
|
+
ansys_mechanical_core-0.11.15.dist-info/METADATA,sha256=DMsE2gNw6dEiUSyUOWFDg-ksVzTfUNohHOTevDjPlIk,10666
|
53
|
+
ansys_mechanical_core-0.11.15.dist-info/RECORD,,
|
@@ -1,49 +0,0 @@
|
|
1
|
-
ansys/mechanical/core/__init__.py,sha256=u0OpMtxVeEO9GvfxzUN0yf0x3mtox0Gjn4f0kO1qk7A,2564
|
2
|
-
ansys/mechanical/core/_version.py,sha256=nRlEBl4c6kNOE78hhqJwYuPk86jhu70lOSRuZphT81M,1763
|
3
|
-
ansys/mechanical/core/errors.py,sha256=k0hJ89FwbFexLsjVApCbqfy2K7d-MekTPf3-QdtXZK4,4508
|
4
|
-
ansys/mechanical/core/feature_flags.py,sha256=bIRHaURLi70Yor1aJH3Fhlt9xvvyr9GG7JcJ1V59GNg,2078
|
5
|
-
ansys/mechanical/core/ide_config.py,sha256=Yic_KFrxuZA0HUsuRsfld-j37YnfYuM97PRLYhnm-Y8,7334
|
6
|
-
ansys/mechanical/core/launcher.py,sha256=Rd5kDcC58MZIjsk2d40Bx4qc0DVHzrYuNA3irDvsFKA,6675
|
7
|
-
ansys/mechanical/core/logging.py,sha256=TmIY5L-IrkyAQMKszotcbVCxyHLsMZQDAwbvcrSKwfs,24554
|
8
|
-
ansys/mechanical/core/mechanical.py,sha256=FNxMHv8FWcpP92jYqNTo6uPlmH0HnsGRHSnivaVyYjg,83663
|
9
|
-
ansys/mechanical/core/misc.py,sha256=f_LjwIvCGaHSIKJ6LuREbCr7gbv9rg2aFQaQ28Edna8,5369
|
10
|
-
ansys/mechanical/core/pool.py,sha256=xii4fNxNH_Xnyom9-ZpvsyXCxoUxa2mDu8brS339B2Y,26572
|
11
|
-
ansys/mechanical/core/run.py,sha256=wUsGPyZx2NwNlrdzIO1cWmDAZeZU0tOY1OvT-8pqjaw,9928
|
12
|
-
ansys/mechanical/core/embedding/__init__.py,sha256=QAUe-offKZZDPz0IYBIUtYi4Dgt02_U93yTeSWXO9fU,1356
|
13
|
-
ansys/mechanical/core/embedding/addins.py,sha256=6n3wCaD36cBbXWCbpniuABgvW6uBSN6xYXA5KkNgfLg,2167
|
14
|
-
ansys/mechanical/core/embedding/app.py,sha256=spB7yuxHO3n7I_UkQVnRaYft3iO77LuCUpExtzddLcU,22084
|
15
|
-
ansys/mechanical/core/embedding/app_libraries.py,sha256=_czRZ5cPwRo9SIZNitlgmBf2riLdzlGmmD4BJt9Nvng,2922
|
16
|
-
ansys/mechanical/core/embedding/appdata.py,sha256=98BYek_AKH5LaN5J3o8Mx8QDy23_6EpwKyBSiQpiu0E,4273
|
17
|
-
ansys/mechanical/core/embedding/background.py,sha256=dNwi45q8y8iXpMKathDMQd2k7CUfl4X6wIhngQvJcEc,4178
|
18
|
-
ansys/mechanical/core/embedding/cleanup_gui.py,sha256=TEF3l4A7UxMacmlkUwBBymTdqM6h8Be9piID4Hpn_jg,2354
|
19
|
-
ansys/mechanical/core/embedding/enum_importer.py,sha256=-DN4N5Sh-nRQAud4izyTfo-EvGwOfGAiZ8zELPiuj8A,1606
|
20
|
-
ansys/mechanical/core/embedding/imports.py,sha256=m-ywpl29iB1r57Mt9qS2GYFF2HfZ37kNt-01OkKqAwM,4414
|
21
|
-
ansys/mechanical/core/embedding/initializer.py,sha256=knq3HzfQD8-yUB-cGHjzA4IKG_bOsEPd57tle_cvVNs,8086
|
22
|
-
ansys/mechanical/core/embedding/loader.py,sha256=e2KWBrVv5001MP6DPJWI0UwrEauUnlTLpz9X6WYFdhk,2503
|
23
|
-
ansys/mechanical/core/embedding/poster.py,sha256=-V1GYrvRDyv8nbaBJze7Uo3PUb1hfOIidf1YI7-cT60,3065
|
24
|
-
ansys/mechanical/core/embedding/resolver.py,sha256=VrUbSV0oLsz0fhoR8C4M9IFFElV-j7nvUaJlO4Su4r0,2200
|
25
|
-
ansys/mechanical/core/embedding/runtime.py,sha256=6ZQsD1qvB2VMJsoLkm9vvsWbVX-buj8jLDAm4Qyc65k,2982
|
26
|
-
ansys/mechanical/core/embedding/shims.py,sha256=LP5px-ED4JNbqFEpYnmBkGiGDdfDkLQ-v1tNnPbz3E8,1732
|
27
|
-
ansys/mechanical/core/embedding/ui.py,sha256=1XXkKSvui9iHKGqFROJQZMW-3iY-Hh2i1Ixq8Iav8cY,8480
|
28
|
-
ansys/mechanical/core/embedding/utils.py,sha256=7KSFCl9VM_WhrQEtI3Jc9OwhmH9wI7PH0n17ab_ytfo,1900
|
29
|
-
ansys/mechanical/core/embedding/warnings.py,sha256=Iyo95YOneMdCxOImXjnohhQZ86tD3xcnvJPUstlvHy0,3071
|
30
|
-
ansys/mechanical/core/embedding/logger/__init__.py,sha256=6NZHzFXzHHlV_NAa1gZsLyQjsRK3kBODvYwcCum9vSU,7998
|
31
|
-
ansys/mechanical/core/embedding/logger/environ.py,sha256=Jo9OEyag2ub_DIshxEX6Re8UzIrXCfmge5hFrn3exKk,5757
|
32
|
-
ansys/mechanical/core/embedding/logger/linux_api.py,sha256=wM95m4ArlF3gvqKFvKP7DzWWRHSngB3fe51D26CUD3Y,5988
|
33
|
-
ansys/mechanical/core/embedding/logger/sinks.py,sha256=-lAS-M7k3WHAblbrM7nzpOBJiCjN8e6i52GoEeQo_gE,1392
|
34
|
-
ansys/mechanical/core/embedding/logger/windows_api.py,sha256=GoFPfO-_umcCRAQeYrEdYQCTYpeNLB_IrY4hHh_LmTo,5276
|
35
|
-
ansys/mechanical/core/embedding/rpc/__init__.py,sha256=Vk1nDMlxG1pCW7aWf6BEEqBR1UDIaQCUIVyin5uatBQ,1650
|
36
|
-
ansys/mechanical/core/embedding/rpc/client.py,sha256=w8S_dzPmtR4qwKTdPCbrFTXhiEvnqda-nEBSsdOqexM,8841
|
37
|
-
ansys/mechanical/core/embedding/rpc/server.py,sha256=l0nHrptN3tui1iDfAZ3MhrH1pex_dEtRDFIrsPfrZC8,13101
|
38
|
-
ansys/mechanical/core/embedding/rpc/utils.py,sha256=Jr40xwvGCnlZZJE4fw6QoXsb8fqeGhres8bwE9ISez8,4342
|
39
|
-
ansys/mechanical/core/embedding/viz/__init__.py,sha256=KHZQAzlfgEVhi-G0msA6ca1o-2RecoNGzkpYfBIoCTA,1206
|
40
|
-
ansys/mechanical/core/embedding/viz/embedding_plotter.py,sha256=d2GjQiQgDHXfNTgETEIKRZYymkvB8-3KBHs7fF9PW_c,3689
|
41
|
-
ansys/mechanical/core/embedding/viz/usd_converter.py,sha256=kMKmGLThbWf7iR9bYn24mdmgKBkLDdkwdHrOokFvg_U,5329
|
42
|
-
ansys/mechanical/core/embedding/viz/utils.py,sha256=AYvp0okbEk3y9611eGAtvhgh65ytfpHkywVT7qk_liQ,3660
|
43
|
-
ansys/mechanical/core/examples/__init__.py,sha256=Y0T8CKmaALL3diLfhsz3opfBgckD85DfHdzDrVsSwzg,1267
|
44
|
-
ansys/mechanical/core/examples/downloads.py,sha256=5_Krq3HqVeAeD4z3dx9uujLk1u6rPFoAuwQus9eYWjg,4295
|
45
|
-
ansys_mechanical_core-0.11.13.dist-info/entry_points.txt,sha256=tErx6bIM27HGgwyM6ryyTUTw30Ab2F9J3FFkX2TPkhI,130
|
46
|
-
ansys_mechanical_core-0.11.13.dist-info/LICENSE,sha256=AVOPDv4UX26lKidhDvFf_fMR13Pr-n4wVAYSVyvD7Ww,1098
|
47
|
-
ansys_mechanical_core-0.11.13.dist-info/WHEEL,sha256=CpUCUxeHQbRN5UGRQHYRJorO5Af-Qy_fHMctcQ8DSGI,82
|
48
|
-
ansys_mechanical_core-0.11.13.dist-info/METADATA,sha256=lrlhVb1Cw40iMS_9bpm8gNpu9t4lnqIMck3rZymH0Gs,10487
|
49
|
-
ansys_mechanical_core-0.11.13.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
{ansys_mechanical_core-0.11.13.dist-info → ansys_mechanical_core-0.11.15.dist-info}/entry_points.txt
RENAMED
File without changes
|
{ansys_mechanical_core-0.11.13.dist-info → ansys_mechanical_core-0.11.15.dist-info/licenses}/LICENSE
RENAMED
File without changes
|