ansys-api-discovery 0.6.0__py3-none-any.whl → 0.6.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of ansys-api-discovery might be problematic. Click here for more details.
- ansys/api/discovery/VERSION +1 -1
- ansys/api/discovery/v0/conditions.proto +3 -3
- ansys/api/discovery/v0/conditions_pb2.py +2 -2
- ansys/api/discovery/v0/conditions_pb2_grpc.py +9 -9
- ansys/api/discovery/v0/conditions_pb2_grpc.pyi +6 -6
- ansys/api/discovery/v0/conditionsfluid.proto +25 -25
- ansys/api/discovery/v0/conditionsfluid_pb2.py +60 -60
- ansys/api/discovery/v0/conditionsfluid_pb2.pyi +24 -24
- ansys/api/discovery/v0/conditionsfluid_pb2_grpc.py +39 -39
- ansys/api/discovery/v0/conditionsfluid_pb2_grpc.pyi +26 -26
- ansys/api/discovery/v0/conditionsstructural.proto +89 -89
- ansys/api/discovery/v0/conditionsstructural_pb2.py +86 -86
- ansys/api/discovery/v0/conditionsstructural_pb2.pyi +36 -36
- ansys/api/discovery/v0/conditionsstructural_pb2_grpc.py +204 -204
- ansys/api/discovery/v0/conditionsstructural_pb2_grpc.pyi +136 -136
- ansys/api/discovery/v0/conditionsthermal.proto +21 -21
- ansys/api/discovery/v0/conditionsthermal_pb2.py +36 -36
- ansys/api/discovery/v0/conditionsthermal_pb2.pyi +20 -20
- ansys/api/discovery/v0/conditionsthermal_pb2_grpc.py +33 -33
- ansys/api/discovery/v0/conditionsthermal_pb2_grpc.pyi +22 -22
- ansys/api/discovery/v0/discoverymodels.proto +3 -3
- ansys/api/discovery/v0/discoverymodels_pb2.py +27 -27
- ansys/api/discovery/v0/discoverymodels_pb2.pyi +6 -6
- ansys/api/discovery/v0/monitors.proto +137 -0
- ansys/api/discovery/v0/monitors_pb2.py +42 -0
- ansys/api/discovery/v0/monitors_pb2.pyi +307 -0
- ansys/api/discovery/v0/monitors_pb2_grpc.py +67 -0
- ansys/api/discovery/v0/monitors_pb2_grpc.pyi +27 -0
- ansys/api/discovery/v0/solution.proto +5 -4
- ansys/api/discovery/v0/solution_pb2.py +9 -9
- ansys/api/discovery/v0/solution_pb2.pyi +17 -12
- {ansys_api_discovery-0.6.0.dist-info → ansys_api_discovery-0.6.1.dist-info}/METADATA +2 -2
- {ansys_api_discovery-0.6.0.dist-info → ansys_api_discovery-0.6.1.dist-info}/RECORD +37 -32
- {ansys_api_discovery-0.6.0.dist-info → ansys_api_discovery-0.6.1.dist-info}/WHEEL +1 -1
- {ansys_api_discovery-0.6.0.dist-info → ansys_api_discovery-0.6.1.dist-info}/LICENSE +0 -0
- {ansys_api_discovery-0.6.0.dist-info → ansys_api_discovery-0.6.1.dist-info}/entry_points.txt +0 -0
- {ansys_api_discovery-0.6.0.dist-info → ansys_api_discovery-0.6.1.dist-info}/top_level.txt +0 -0
|
@@ -4,6 +4,7 @@ isort:skip_file
|
|
|
4
4
|
"""
|
|
5
5
|
import builtins
|
|
6
6
|
import google.protobuf.descriptor
|
|
7
|
+
import google.protobuf.internal.containers
|
|
7
8
|
import google.protobuf.internal.enum_type_wrapper
|
|
8
9
|
import google.protobuf.message
|
|
9
10
|
import typing
|
|
@@ -11,19 +12,19 @@ import typing_extensions
|
|
|
11
12
|
|
|
12
13
|
DESCRIPTOR: google.protobuf.descriptor.FileDescriptor = ...
|
|
13
14
|
|
|
14
|
-
class
|
|
15
|
+
class _SolverManager:
|
|
15
16
|
ValueType = typing.NewType('ValueType', builtins.int)
|
|
16
17
|
V: typing_extensions.TypeAlias = ValueType
|
|
17
|
-
class
|
|
18
|
+
class _SolverManagerEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[_SolverManager.ValueType], builtins.type):
|
|
18
19
|
DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor = ...
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
class
|
|
20
|
+
ARTEMIS: SolverManager.ValueType = ... # 0
|
|
21
|
+
APOLLO: SolverManager.ValueType = ... # 1
|
|
22
|
+
class SolverManager(_SolverManager, metaclass=_SolverManagerEnumTypeWrapper):
|
|
22
23
|
pass
|
|
23
24
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
25
|
+
ARTEMIS: SolverManager.ValueType = ... # 0
|
|
26
|
+
APOLLO: SolverManager.ValueType = ... # 1
|
|
27
|
+
global___SolverManager = SolverManager
|
|
27
28
|
|
|
28
29
|
|
|
29
30
|
class SolverFidelityRequest(google.protobuf.message.Message):
|
|
@@ -71,18 +72,22 @@ global___SolverFidelityResponse = SolverFidelityResponse
|
|
|
71
72
|
class SolveExecutionRequest(google.protobuf.message.Message):
|
|
72
73
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
73
74
|
SIMULATION_ID_FIELD_NUMBER: builtins.int
|
|
74
|
-
|
|
75
|
+
SOLVER_MANAGER_FIELD_NUMBER: builtins.int
|
|
75
76
|
EXECUTE_REMOTELY_FIELD_NUMBER: builtins.int
|
|
77
|
+
VARIATION_ID_LIST_FIELD_NUMBER: builtins.int
|
|
76
78
|
simulation_id: typing.Text = ...
|
|
77
|
-
|
|
79
|
+
solver_manager: global___SolverManager.ValueType = ...
|
|
78
80
|
execute_remotely: builtins.bool = ...
|
|
81
|
+
@property
|
|
82
|
+
def variation_id_list(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[typing.Text]: ...
|
|
79
83
|
def __init__(self,
|
|
80
84
|
*,
|
|
81
85
|
simulation_id : typing.Text = ...,
|
|
82
|
-
|
|
86
|
+
solver_manager : global___SolverManager.ValueType = ...,
|
|
83
87
|
execute_remotely : builtins.bool = ...,
|
|
88
|
+
variation_id_list : typing.Optional[typing.Iterable[typing.Text]] = ...,
|
|
84
89
|
) -> None: ...
|
|
85
|
-
def ClearField(self, field_name: typing_extensions.Literal["execute_remotely",b"execute_remotely","simulation_id",b"simulation_id","
|
|
90
|
+
def ClearField(self, field_name: typing_extensions.Literal["execute_remotely",b"execute_remotely","simulation_id",b"simulation_id","solver_manager",b"solver_manager","variation_id_list",b"variation_id_list"]) -> None: ...
|
|
86
91
|
global___SolveExecutionRequest = SolveExecutionRequest
|
|
87
92
|
|
|
88
93
|
class SolveExecutionResponse(google.protobuf.message.Message):
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: ansys-api-discovery
|
|
3
|
-
Version: 0.6.
|
|
4
|
-
Summary: Autogenerated python gRPC interface package for ansys-api-discovery, built on
|
|
3
|
+
Version: 0.6.1
|
|
4
|
+
Summary: Autogenerated python gRPC interface package for ansys-api-discovery, built on 08:43:11 on 28 November 2024
|
|
5
5
|
Home-page: https://github.com/ansys/ansys-api-discovery
|
|
6
6
|
Author: ANSYS, Inc.
|
|
7
7
|
Author-email: support@ansys.com
|
|
@@ -1,35 +1,35 @@
|
|
|
1
|
-
ansys/api/discovery/VERSION,sha256=
|
|
1
|
+
ansys/api/discovery/VERSION,sha256=h7JBsnXFkWlIRlYOmHn1DJ2jFQ-FTv2r14LFOXcvMDM,6
|
|
2
2
|
ansys/api/discovery/__init__.py,sha256=c2GxEoryXIQtBEhwLRN45MOr4IsG1UbsHYBzUnvXGDM,231
|
|
3
3
|
ansys/api/discovery/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
ansys/api/discovery/v0/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
5
|
-
ansys/api/discovery/v0/conditions.proto,sha256=
|
|
6
|
-
ansys/api/discovery/v0/conditions_pb2.py,sha256=
|
|
5
|
+
ansys/api/discovery/v0/conditions.proto,sha256=AIerp0U5Od-1ZFLXdu7yBGCZitfTj5GpmOyZhZzfxIQ,849
|
|
6
|
+
ansys/api/discovery/v0/conditions_pb2.py,sha256=9F6aDEIaixZrF4JrfNnSJfoMgGtFlNKp-4yC5YXTdhk,2399
|
|
7
7
|
ansys/api/discovery/v0/conditions_pb2.pyi,sha256=YFZof2hSOuK6GF0qmagdVUT45RiRHzFRDaGNVAHxxkc,2001
|
|
8
|
-
ansys/api/discovery/v0/conditions_pb2_grpc.py,sha256=
|
|
9
|
-
ansys/api/discovery/v0/conditions_pb2_grpc.pyi,sha256=
|
|
10
|
-
ansys/api/discovery/v0/conditionsfluid.proto,sha256=
|
|
11
|
-
ansys/api/discovery/v0/conditionsfluid_pb2.py,sha256=
|
|
12
|
-
ansys/api/discovery/v0/conditionsfluid_pb2.pyi,sha256=
|
|
13
|
-
ansys/api/discovery/v0/conditionsfluid_pb2_grpc.py,sha256=
|
|
14
|
-
ansys/api/discovery/v0/conditionsfluid_pb2_grpc.pyi,sha256=
|
|
15
|
-
ansys/api/discovery/v0/conditionsstructural.proto,sha256=
|
|
16
|
-
ansys/api/discovery/v0/conditionsstructural_pb2.py,sha256=
|
|
17
|
-
ansys/api/discovery/v0/conditionsstructural_pb2.pyi,sha256=
|
|
18
|
-
ansys/api/discovery/v0/conditionsstructural_pb2_grpc.py,sha256=
|
|
19
|
-
ansys/api/discovery/v0/conditionsstructural_pb2_grpc.pyi,sha256=
|
|
20
|
-
ansys/api/discovery/v0/conditionsthermal.proto,sha256=
|
|
21
|
-
ansys/api/discovery/v0/conditionsthermal_pb2.py,sha256=
|
|
22
|
-
ansys/api/discovery/v0/conditionsthermal_pb2.pyi,sha256=
|
|
23
|
-
ansys/api/discovery/v0/conditionsthermal_pb2_grpc.py,sha256=
|
|
24
|
-
ansys/api/discovery/v0/conditionsthermal_pb2_grpc.pyi,sha256=
|
|
8
|
+
ansys/api/discovery/v0/conditions_pb2_grpc.py,sha256=mCjPXSOvwLzIl4XAu4nDozy0PUloDi5jsZhJ5g3TeDQ,6939
|
|
9
|
+
ansys/api/discovery/v0/conditions_pb2_grpc.pyi,sha256=caUBGpiu7akM5WNTGeMnRxmhLtpxTh_eOHH0T1_lrWc,1913
|
|
10
|
+
ansys/api/discovery/v0/conditionsfluid.proto,sha256=hdR72gWxHjtxinHqxRyPu8jRI_tvNFqJf7h2QcA1Uww,6439
|
|
11
|
+
ansys/api/discovery/v0/conditionsfluid_pb2.py,sha256=Ivsh_ZLrNZvXa4H_Vkl7_JhgW-etQG31lmT8FUCh84w,15162
|
|
12
|
+
ansys/api/discovery/v0/conditionsfluid_pb2.pyi,sha256=CpULB1ZYS1YUaOnTvy647KWZeJVHVZ63EQjvdqP3C-o,32321
|
|
13
|
+
ansys/api/discovery/v0/conditionsfluid_pb2_grpc.py,sha256=DRadkhnAGajXXGp6-YEbNatYMN1Cy2STx-ZuxcHQEEg,40004
|
|
14
|
+
ansys/api/discovery/v0/conditionsfluid_pb2_grpc.pyi,sha256=j6zEx8PQO6mn7ZMhAoc14ZwYUWthIeOEARoQbMS6gk8,9894
|
|
15
|
+
ansys/api/discovery/v0/conditionsstructural.proto,sha256=eOF8daZ2x4p3UJEa4LKYYCelr-2GcOEX41CuuJnHaI0,13712
|
|
16
|
+
ansys/api/discovery/v0/conditionsstructural_pb2.py,sha256=2TGgPRvsuVSk5k4PIyFDRew6ayvm31fSPoSsN281uj0,29169
|
|
17
|
+
ansys/api/discovery/v0/conditionsstructural_pb2.pyi,sha256=QC5HObAh2pGEy86d_dfQldjO3QX_mDKvD3KW0chXW-0,46155
|
|
18
|
+
ansys/api/discovery/v0/conditionsstructural_pb2_grpc.py,sha256=3iHqsIF3Usb_HgZC42WddeBKjJ3cOAtEi-8GRLbz4KM,168912
|
|
19
|
+
ansys/api/discovery/v0/conditionsstructural_pb2_grpc.pyi,sha256=z6J5_L3l6wURViNZdcwKmA3d0MQA4VjcJrzJG2fTfoQ,40589
|
|
20
|
+
ansys/api/discovery/v0/conditionsthermal.proto,sha256=hdKBj3y8sHsCB6LicKD3k7vzIQsWPFvAqVwWfhmf8rs,4767
|
|
21
|
+
ansys/api/discovery/v0/conditionsthermal_pb2.py,sha256=zbySpVn_rg9epkCv5GH870pb0R28TvcyJ6SUu3Hqwgk,10965
|
|
22
|
+
ansys/api/discovery/v0/conditionsthermal_pb2.pyi,sha256=UslQ_9X5_B9GR_0tHDjIcujMh10nOKJDc_oVGnk0bhk,21322
|
|
23
|
+
ansys/api/discovery/v0/conditionsthermal_pb2_grpc.py,sha256=dMlHj4CnJIQj5nwKz-WwOEKHF0wp-urHNwFlui6n_8k,39689
|
|
24
|
+
ansys/api/discovery/v0/conditionsthermal_pb2_grpc.pyi,sha256=ONLY6HOJbASgl-x7R6F31zTmDD-p5xQ7bcphufDvLX8,10053
|
|
25
25
|
ansys/api/discovery/v0/definedvariationstable.proto,sha256=lX16X6sfqu_iqKpX3VJRF-8JheBX3fjdq-MeL0LC6js,4186
|
|
26
26
|
ansys/api/discovery/v0/definedvariationstable_pb2.py,sha256=vBPsGZ4ZQ87JHsDce5JZQwLJlulDW7Swntcowc2NRaM,6902
|
|
27
27
|
ansys/api/discovery/v0/definedvariationstable_pb2.pyi,sha256=XYP3RRIKZwIKjMUEtTEe_zFckytFNy3IP8BQcQ1SvGU,10354
|
|
28
28
|
ansys/api/discovery/v0/definedvariationstable_pb2_grpc.py,sha256=5Bl_xJKM_sMiyxd9vMl0amR3sgXDIPMNElybJlI5elU,33209
|
|
29
29
|
ansys/api/discovery/v0/definedvariationstable_pb2_grpc.pyi,sha256=Vx_gAUNcKWbYqVP-x8ExtYXfMbl4QBIel-LtsIvB3l4,9690
|
|
30
|
-
ansys/api/discovery/v0/discoverymodels.proto,sha256=
|
|
31
|
-
ansys/api/discovery/v0/discoverymodels_pb2.py,sha256=
|
|
32
|
-
ansys/api/discovery/v0/discoverymodels_pb2.pyi,sha256=
|
|
30
|
+
ansys/api/discovery/v0/discoverymodels.proto,sha256=njPFb4Kn0UUwZ_NflIjJc1iJtJ65EmXKJp86Bf4gD6w,7169
|
|
31
|
+
ansys/api/discovery/v0/discoverymodels_pb2.py,sha256=2XTxsZHubfQV7tm1qm4NcZU7VcPXgC90cKXXWqqrVN0,12719
|
|
32
|
+
ansys/api/discovery/v0/discoverymodels_pb2.pyi,sha256=Qsk9ugpU8J3HtlMIyNvJAWjwXS8yuLuxQwcPFGqEcJE,36225
|
|
33
33
|
ansys/api/discovery/v0/discoverymodels_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
34
34
|
ansys/api/discovery/v0/discoverymodels_pb2_grpc.pyi,sha256=ff2TSiLVnG6IVQcTGzb2DIH3XRSoAvAo_RMcvbMFyc0,76
|
|
35
35
|
ansys/api/discovery/v0/historytrackparameters.proto,sha256=LPRmwRt10H8K7H8GacWPt28xA1M1_HURJRErbwltqJo,1549
|
|
@@ -42,6 +42,11 @@ ansys/api/discovery/v0/messaging_pb2.py,sha256=O9N7jQcb3jleaJj60Cc4HSIi8D5IjlNJi
|
|
|
42
42
|
ansys/api/discovery/v0/messaging_pb2.pyi,sha256=7pVtwf6MQNpMkPlPrw5F4kfO6EPjREF3_rV-VmRfjy8,716
|
|
43
43
|
ansys/api/discovery/v0/messaging_pb2_grpc.py,sha256=q7Og7xEn4CApFY5NwPRN1-cpQvyW6E5TjrQnoc4xeMw,4466
|
|
44
44
|
ansys/api/discovery/v0/messaging_pb2_grpc.pyi,sha256=22vxFZ2OMICUFsfbDiJRq4gdwXo79wDC2KTvPnLy3G4,1260
|
|
45
|
+
ansys/api/discovery/v0/monitors.proto,sha256=D827mmjBIH2zbiULwkGjYR3V68lqeqqB_UFJ-VDHmcM,4157
|
|
46
|
+
ansys/api/discovery/v0/monitors_pb2.py,sha256=rkpJKf8pD0ayW3J5zlXL2AJ6vz4ZuujDNOBthYnR-l8,7361
|
|
47
|
+
ansys/api/discovery/v0/monitors_pb2.pyi,sha256=dA4KEB3jycsgUIUu7QZmIPLXZyCKyNrwJnhzjrGkBVM,18305
|
|
48
|
+
ansys/api/discovery/v0/monitors_pb2_grpc.py,sha256=9E4Gnr4u9efP3_7JhOuzR5YyqRCgR6OXrwjOU7HE-QI,2825
|
|
49
|
+
ansys/api/discovery/v0/monitors_pb2_grpc.pyi,sha256=ht2Mwq49Y-92_MNlEzojXmPemi1gmsE7XhawQEe9RpM,877
|
|
45
50
|
ansys/api/discovery/v0/scriptparameters.proto,sha256=hIXZjxv8vyJP-m4GNOzUTVoTERvRCF5dwkP53LNS6lc,1167
|
|
46
51
|
ansys/api/discovery/v0/scriptparameters_pb2.py,sha256=_1ryfv7k6koRvojxhaC5VNAEuoa41m3IPcmH8sJXtac,2742
|
|
47
52
|
ansys/api/discovery/v0/scriptparameters_pb2.pyi,sha256=9wQXDBkfSUmfZdxqVtX7yY1w6U0u4111zh50FtMHadw,2771
|
|
@@ -52,9 +57,9 @@ ansys/api/discovery/v0/simulations_pb2.py,sha256=Ge_v20bL1UJeo2wimuQ20D9UdDoS_dg
|
|
|
52
57
|
ansys/api/discovery/v0/simulations_pb2.pyi,sha256=WxPMTdKQo23vIBMqBxV99BzehIRzHnvTo2CL-Kst7qc,1055
|
|
53
58
|
ansys/api/discovery/v0/simulations_pb2_grpc.py,sha256=S8jmaQQmGsqfr7y4qVKuQ55BZS0iAgnK2T0eMuB4TZg,4628
|
|
54
59
|
ansys/api/discovery/v0/simulations_pb2_grpc.pyi,sha256=WM9yj4Ra2vxHIzb0YkWU5QvMFWzA7-4X71GG5JPiqPU,1358
|
|
55
|
-
ansys/api/discovery/v0/solution.proto,sha256=
|
|
56
|
-
ansys/api/discovery/v0/solution_pb2.py,sha256=
|
|
57
|
-
ansys/api/discovery/v0/solution_pb2.pyi,sha256=
|
|
60
|
+
ansys/api/discovery/v0/solution.proto,sha256=PNP48eEvedXfNAsAeOwy9yo0O65boxbrA6qXcpl1Uqc,1068
|
|
61
|
+
ansys/api/discovery/v0/solution_pb2.py,sha256=g-IjPml-WrGzlHiK2n-gap6UXOHS2AaJxgl-IJTbDOs,3026
|
|
62
|
+
ansys/api/discovery/v0/solution_pb2.pyi,sha256=6iswlXDqx1nNwE9URxceD3wQZ_06xwqt5w2mqgbVg8Q,4596
|
|
58
63
|
ansys/api/discovery/v0/solution_pb2_grpc.py,sha256=CP-hr9Ub-48GJsY0NWyHXz9cZWr4xj-E2jBOPkg_pA0,6517
|
|
59
64
|
ansys/api/discovery/v0/solution_pb2_grpc.pyi,sha256=jJTn_Ka4BtM9fJ4C6CzMJK4gCgjmHr9_pL-TuLhNlSs,1645
|
|
60
65
|
ansys/api/discovery/v0/units.proto,sha256=gTL5sZVIqcGNOxfc30FGa1Jlspuoi1E6x0EFJIr-kx4,45403
|
|
@@ -62,9 +67,9 @@ ansys/api/discovery/v0/units_pb2.py,sha256=k8n3o8rH_yt48xqvjzPu8XONteVLI_Eg8Bbwk
|
|
|
62
67
|
ansys/api/discovery/v0/units_pb2.pyi,sha256=1sBHhZfIxIssrgeO3jIgMQ-5nMhBBn8qkr93C60Jg2c,201214
|
|
63
68
|
ansys/api/discovery/v0/units_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
64
69
|
ansys/api/discovery/v0/units_pb2_grpc.pyi,sha256=ff2TSiLVnG6IVQcTGzb2DIH3XRSoAvAo_RMcvbMFyc0,76
|
|
65
|
-
ansys_api_discovery-0.6.
|
|
66
|
-
ansys_api_discovery-0.6.
|
|
67
|
-
ansys_api_discovery-0.6.
|
|
68
|
-
ansys_api_discovery-0.6.
|
|
69
|
-
ansys_api_discovery-0.6.
|
|
70
|
-
ansys_api_discovery-0.6.
|
|
70
|
+
ansys_api_discovery-0.6.1.dist-info/LICENSE,sha256=q2LY-0-hseAc1SDA7rBn96IDi2SHenCzygJda8-7AAU,1089
|
|
71
|
+
ansys_api_discovery-0.6.1.dist-info/METADATA,sha256=2yxVthW092QgBssHlmy_VtHPQ_KPaXMZg-HZjhRs0UY,1922
|
|
72
|
+
ansys_api_discovery-0.6.1.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
73
|
+
ansys_api_discovery-0.6.1.dist-info/entry_points.txt,sha256=WScutwzRi-SS6g8pXveUJiIOBeIoLBqDVpsPMCAYzmY,91
|
|
74
|
+
ansys_api_discovery-0.6.1.dist-info/top_level.txt,sha256=9rw0UJ0mtof2GA3U8RpqYo6EmbpfE8-wo3NoX6SlYtg,6
|
|
75
|
+
ansys_api_discovery-0.6.1.dist-info/RECORD,,
|
|
File without changes
|
{ansys_api_discovery-0.6.0.dist-info → ansys_api_discovery-0.6.1.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
|
File without changes
|