PySimultan 0.6.1__py3-none-any.whl → 0.6.4__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.
- PySimultan2/CHANGELOG.md +7 -0
- PySimultan2/__about__.py +1 -1
- PySimultan2/data_model.py +1 -1
- PySimultan2/default_types.py +8 -3
- PySimultan2/files.py +39 -5
- PySimultan2/multi_values.py +59 -2
- PySimultan2/resources/SIMULTAN.Lang.dll +0 -0
- PySimultan2/resources/SIMULTAN.Lang.xml +398 -21
- PySimultan2/resources/SIMULTAN.Plugins.dll +0 -0
- PySimultan2/resources/SIMULTAN.Plugins.xml +367 -0
- PySimultan2/resources/SIMULTAN.dll +0 -0
- PySimultan2/resources/SIMULTAN.xml +521 -86
- PySimultan2/utils.py +3 -2
- {pysimultan-0.6.1.dist-info → pysimultan-0.6.4.dist-info}/METADATA +4 -1
- pysimultan-0.6.4.dist-info/RECORD +50 -0
- pysimultan-0.6.4.dist-info/licenses/LICENSE.txt +29 -0
- PySimultan2/resources/AssimpNet.dll +0 -0
- PySimultan2/resources/AvalonDock.dll +0 -0
- PySimultan2/resources/BruTile.dll +0 -0
- PySimultan2/resources/ComponentBuilder.dll +0 -0
- PySimultan2/resources/ComponentBuilder.dll.config +0 -56
- PySimultan2/resources/ComponentBuilder.runtimeconfig.json +0 -19
- PySimultan2/resources/ComponentBuilder.xml +0 -19291
- PySimultan2/resources/Cyotek.Drawing.BitmapFont.dll +0 -0
- PySimultan2/resources/HelixToolkit.Core.Wpf.dll +0 -0
- PySimultan2/resources/HelixToolkit.SharpDX.Core.Wpf.dll +0 -0
- PySimultan2/resources/HelixToolkit.SharpDX.Core.dll +0 -0
- PySimultan2/resources/HelixToolkit.dll +0 -0
- PySimultan2/resources/Python.Runtime.dll +0 -0
- PySimultan2/resources/SIMULTAN.UI.dll +0 -0
- PySimultan2/resources/SIMULTAN.UI.xml +0 -16079
- PySimultan2/resources/SharpDX.D3DCompiler.dll +0 -0
- PySimultan2/resources/SharpDX.DXGI.dll +0 -0
- PySimultan2/resources/SharpDX.Direct2D1.dll +0 -0
- PySimultan2/resources/SharpDX.Direct3D11.dll +0 -0
- PySimultan2/resources/SharpDX.Direct3D9.dll +0 -0
- PySimultan2/resources/SharpDX.dll +0 -0
- PySimultan2/resources/System.Collections.Immutable.dll +0 -0
- PySimultan2/resources/System.Reflection.Metadata.dll +0 -0
- PySimultan2/resources/XAMLMarkupExtensions.dll +0 -0
- PySimultan2/resources/assimp.dll +0 -0
- PySimultan2/resources/componentmanager.user +0 -0
- PySimultan2/resources/defaultsettings.xml +0 -0
- PySimultan2/resources/setup.bat +0 -1
- pysimultan-0.6.1.dist-info/RECORD +0 -76
- pysimultan-0.6.1.dist-info/licenses/LICENSE.txt +0 -9
- {pysimultan-0.6.1.dist-info → pysimultan-0.6.4.dist-info}/WHEEL +0 -0
PySimultan2/utils.py
CHANGED
@@ -2,11 +2,12 @@ from __future__ import annotations
|
|
2
2
|
|
3
3
|
import sys
|
4
4
|
import traceback
|
5
|
+
import functools
|
6
|
+
import numpy as np
|
7
|
+
import pandas as pd
|
5
8
|
|
6
9
|
from enum import Enum
|
7
10
|
from weakref import WeakSet
|
8
|
-
import numpy as np
|
9
|
-
import pandas as pd
|
10
11
|
from typing import List as TypeList, Union, Optional, Type, Any, TYPE_CHECKING
|
11
12
|
from SIMULTAN.Data import SimId
|
12
13
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: PySimultan
|
3
|
-
Version: 0.6.
|
3
|
+
Version: 0.6.4
|
4
4
|
Project-URL: Documentation, https://github.com/Bühler Maximilian/PySimultan2#readme
|
5
5
|
Project-URL: Issues, https://github.com/Bühler Maximilian/PySimultan2/issues
|
6
6
|
Project-URL: Source, https://github.com/Bühler Maximilian/PySimultan2
|
@@ -166,6 +166,9 @@ print(instances[0].param_1)
|
|
166
166
|
|
167
167
|
|
168
168
|
# Change Log
|
169
|
+
## [0.6.4] - 2025-06-06
|
170
|
+
Updated SIMULTAN version to 0.7.18
|
171
|
+
|
169
172
|
## [0.5.9.7] - 2025-01-09
|
170
173
|
- Added default component support to Mapper: if a default component is not present in the datamodel, it is automatically added
|
171
174
|
- Fixed content naming bug: Content.name is now used for the name of the TaxonomyEntry in SIMULTAN
|
@@ -0,0 +1,50 @@
|
|
1
|
+
PySimultan2/CHANGELOG.md,sha256=sFTVr_AgFyqf4HPmShaAHKaHcT5A3MjL2s2VVzEdoyM,1340
|
2
|
+
PySimultan2/__about__.py,sha256=iqekJZs6zrW5tI_Aq_SL2qrBCryDxfq2re9pTGFYsrA,19
|
3
|
+
PySimultan2/__init__.py,sha256=PGVR1uhY01dF5tHyad-znURUZ_LVB95vsjId2BT0aJM,3245
|
4
|
+
PySimultan2/data_model.py,sha256=CW39c91lSTjED7lD-RG9aTOSdDkusdWz77kNvrjdDyA,44109
|
5
|
+
PySimultan2/default_types.py,sha256=NnBgf16CElEAWH7tA0qLKqFHZ4_YS00HAJpKHG1CmjQ,30581
|
6
|
+
PySimultan2/files.py,sha256=8JCWtUPS89POsPrmn_kCrHzmiBsLb1iWhw-A9qQLcR8,34716
|
7
|
+
PySimultan2/multi_values.py,sha256=CkmfifA-mHL3Cnm496tGQuUchpmNF7JCulyrhUFAM_I,15638
|
8
|
+
PySimultan2/object_mapper.py,sha256=Vq4LsX5m6J1dsdlIC6V7sXEUGZYpkgPD6kwOdo5dLRI,19888
|
9
|
+
PySimultan2/simultan_object.py,sha256=-3dTlkyoVdrXmSZgozz7fTHJnaxN63utYPXOXTCuEOY,20837
|
10
|
+
PySimultan2/taxonomy_maps.py,sha256=hhgXhRXIPTD2briG_yYZssJ9musOnzs0LC4e8e78e40,10323
|
11
|
+
PySimultan2/type_setter_lookup.py,sha256=PGa5_EtV7SM15w3uxy0fA3LiQ0TaS4Ys0LYR5zs8aNk,3748
|
12
|
+
PySimultan2/utils.py,sha256=FNJzBVqN31oRKak4NNx9xNmKMrROKphgbh6XfQCmlMw,67115
|
13
|
+
PySimultan2/geometry/__init__.py,sha256=nJolTD1i5J8qUkOQa-r3D20aq3Co3sN31Xc0n4wJpJo,248
|
14
|
+
PySimultan2/geometry/geometry_base.py,sha256=TwABfQEsqxAIGLqwvqVXEV-GA5sYGBJSJm7e58QmNzM,24015
|
15
|
+
PySimultan2/geometry/utils.py,sha256=J25YsK8sso_UL7xRusItQZvyjtvxdOsSPelBQYFABhY,8519
|
16
|
+
PySimultan2/resources/ClosedXML.dll,sha256=dzkwJaBvIdou7SZSE5lsEART_jlnMMztEZu_jBuHp74,1198592
|
17
|
+
PySimultan2/resources/ControlzEx.dll,sha256=S26xw5MnNiIoyiCmVFbFOmUx1yx_zAyXBdDSOSidZxQ,463160
|
18
|
+
PySimultan2/resources/DocumentFormat.OpenXml.dll,sha256=JjiBI17BpHztipV39dQdXAjhHo6Ic0xRjijJJuBQLLo,6108592
|
19
|
+
PySimultan2/resources/DotSpatial.Projections.dll,sha256=dK4oFLcpUK3i6CZ3qIcX5B0npYd-W4hHJz7RJvM77ho,1541632
|
20
|
+
PySimultan2/resources/ExcelNumberFormat.dll,sha256=18Rbjk4QJ4MeL8jN-UH69R0opm_qz8qqc32nMmLntQc,30720
|
21
|
+
PySimultan2/resources/Fluent.dll,sha256=9b7QKKj8-Ynhe4WqSVfiP82PkxYz_kI_GXYi_KQxrEU,2598400
|
22
|
+
PySimultan2/resources/MathNet.Numerics.dll,sha256=g7QaYI5DhAnWUg0BEk9S9XQJ4il5HA4HTjFazn2fQTQ,1600000
|
23
|
+
PySimultan2/resources/Microsoft.AspNetCore.Authorization.dll,sha256=P7_HRwCqdk3q1MD7UtlAXMN_E8gZRdzme6ESGZsXHNk,49272
|
24
|
+
PySimultan2/resources/Microsoft.AspNetCore.Metadata.dll,sha256=jddQwxkgfjmJ6vlXok-PbfnIquNDs6VHvspFEopiTAY,17016
|
25
|
+
PySimultan2/resources/Microsoft.Extensions.DependencyInjection.Abstractions.dll,sha256=jrAm-30mcWoI54hsUTOr-RMOzHIq-zO8ZuRBVrBvCoo,43656
|
26
|
+
PySimultan2/resources/Microsoft.Extensions.Logging.Abstractions.dll,sha256=7mzUlhcvGxpAVO4h_Tka7P_8IXF9ZsHkGt0fp5aufkU,63096
|
27
|
+
PySimultan2/resources/Microsoft.Extensions.Options.dll,sha256=gcHJrSv1wTqvF9SyWTEKcbiShn4mkgfnm9-tRQr4OqY,60584
|
28
|
+
PySimultan2/resources/Microsoft.Extensions.Primitives.dll,sha256=q4ruoDSCjV_QJY9ZkzV6uxvEvZUVrDbyUjU3SSh5SlE,41616
|
29
|
+
PySimultan2/resources/Microsoft.WindowsAPICodePack.Shell.dll,sha256=VTVjKHwRDUz4rGoy8r3j4IP94wHDQky2NImHsqFhbHk,514048
|
30
|
+
PySimultan2/resources/Microsoft.WindowsAPICodePack.dll,sha256=aB9FK5RWRh1onyayOe0YIuu2Qtqv7hq-HmZQH40Mk4s,103936
|
31
|
+
PySimultan2/resources/Microsoft.Xaml.Behaviors.dll,sha256=j3gq16397qqTMYMGWqegvpOHq85gOOkSRV54UnsErco,145272
|
32
|
+
PySimultan2/resources/Newtonsoft.Json.Bson.dll,sha256=tgbl3XemJCyh8d9xfrU9lQWuVpBDMLl1wI1PLb6MMxk,90624
|
33
|
+
PySimultan2/resources/Newtonsoft.Json.dll,sha256=etsgJYQb32kqVnEuCK_nXhcwxx1keKj-1XWs1DJRpmI,639488
|
34
|
+
PySimultan2/resources/SIMULTAN.Lang.dll,sha256=wdjTnQSZIwF_L0UXZU9g1diA2BsUka3Lw2Gmkd-64Hw,2622464
|
35
|
+
PySimultan2/resources/SIMULTAN.Lang.xml,sha256=vm96Db9QoZUrInbqOvefJOuPP0w5p2HsThH-vWzHv7M,756713
|
36
|
+
PySimultan2/resources/SIMULTAN.Plugins.dll,sha256=Carb7bpERnYpx_y8uGyp6aQOord9G6WsLBh3eU-22KM,12288
|
37
|
+
PySimultan2/resources/SIMULTAN.Plugins.xml,sha256=bGo63WDD97GSwK54J0kHfreGFI6gtqDWdk6PBBeqFwU,15912
|
38
|
+
PySimultan2/resources/SIMULTAN.dll,sha256=9JJ55e2-HJBrWo9jnrqaakFILmZQ6l_IZVcguOltBSU,1814528
|
39
|
+
PySimultan2/resources/SIMULTAN.xml,sha256=V4taNP246hAtxBGiJCHsLYt6lUXi964UeaM-Q7H-l14,2001198
|
40
|
+
PySimultan2/resources/SharpDX.Mathematics.dll,sha256=ajtUzW3A6l7UwfVpZgpPacGrVHHP24QZmdSyZOHOThI,215552
|
41
|
+
PySimultan2/resources/Sprache.Calc.dll,sha256=QyBWSMEL5UXootOCTzYWlAkDgGcseeVgDaw_W7K32zc,22528
|
42
|
+
PySimultan2/resources/Sprache.dll,sha256=4c4dDHP9ztxaBDpgWYBUhKKkzPl5eISQimpThGZl0t8,59904
|
43
|
+
PySimultan2/resources/System.Data.OleDb.dll,sha256=-AAzdmyo01QNgD9qnUIewEImplJFVNDGUlqE17qmRYA,124024
|
44
|
+
PySimultan2/resources/System.Net.Http.Formatting.dll,sha256=xQBIin4YpqDObdqwau_5dr8XQEq54hlxV4gBgNtUqbc,179672
|
45
|
+
PySimultan2/resources/System.Reflection.MetadataLoadContext.dll,sha256=P4PBRwAGWL27sNc754Wd28t_koJKBFYJ2FyolrD1xo0,242296
|
46
|
+
PySimultan2/resources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
47
|
+
pysimultan-0.6.4.dist-info/METADATA,sha256=0yzMwWhV7ab7lcBPZz8pl3JMeyhkVkTiIvn1lvkryxw,6608
|
48
|
+
pysimultan-0.6.4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
49
|
+
pysimultan-0.6.4.dist-info/licenses/LICENSE.txt,sha256=FgR_YZkk7oYz4087xYXfcBCXGuTStFrsOWTH4bbpa3c,1821
|
50
|
+
pysimultan-0.6.4.dist-info/RECORD,,
|
@@ -0,0 +1,29 @@
|
|
1
|
+
Academic GPL License Agreement
|
2
|
+
|
3
|
+
1. PreambleThis software is released under the terms of the GNU General Public License (GPL) with additional restrictions limiting use to academic, research, and educational purposes. It ensures that users have the freedom to study, modify, and share the software while prohibiting commercial exploitation.
|
4
|
+
|
5
|
+
2. Grant of LicenseThis software is licensed under the GPL with the following additional condition: You may use, modify, and distribute this software only for academic, research, and educational purposes. Any commercial use, including but not limited to for-profit applications, services, or product development, is strictly prohibited.
|
6
|
+
|
7
|
+
3. RestrictionsYou may not:
|
8
|
+
|
9
|
+
Use the software for commercial, business, or for-profit purposes.
|
10
|
+
|
11
|
+
Distribute, sublicense, or sell copies of the software for commercial purposes.
|
12
|
+
|
13
|
+
Remove or alter any copyright, trademark, or proprietary notices.
|
14
|
+
|
15
|
+
4. Compliance with GPLAs this software is based on the GPL, you must also:
|
16
|
+
|
17
|
+
Include a copy of this license with any distribution.
|
18
|
+
|
19
|
+
Provide access to the source code when distributing the software.
|
20
|
+
|
21
|
+
Allow modifications and redistribution under these same terms.
|
22
|
+
|
23
|
+
5. Disclaimer of WarrantyThis software is provided "as is" without any warranties, express or implied. The author disclaims any liability for damages arising from its use.
|
24
|
+
|
25
|
+
6. TerminationThis license is effective until terminated. If you violate any terms, your rights under this license will terminate automatically, and you must cease using the software and delete all copies.
|
26
|
+
|
27
|
+
7. Governing LawThis agreement shall be governed by and construed in accordance with the laws of [Your Jurisdiction].
|
28
|
+
|
29
|
+
By using this software, you agree to abide by the terms of this license and the GNU General Public License.
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -1,56 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
2
|
-
<configuration>
|
3
|
-
<startup>
|
4
|
-
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
|
5
|
-
</startup>
|
6
|
-
<runtime>
|
7
|
-
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
8
|
-
<dependentAssembly>
|
9
|
-
<assemblyIdentity name="SharpDX" publicKeyToken="b4dcf0f35e5521f1" culture="neutral" />
|
10
|
-
<bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" />
|
11
|
-
</dependentAssembly>
|
12
|
-
<dependentAssembly>
|
13
|
-
<assemblyIdentity name="SharpDX.DXGI" publicKeyToken="b4dcf0f35e5521f1" culture="neutral" />
|
14
|
-
<bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" />
|
15
|
-
</dependentAssembly>
|
16
|
-
<dependentAssembly>
|
17
|
-
<assemblyIdentity name="SharpDX.Direct3D11" publicKeyToken="b4dcf0f35e5521f1" culture="neutral" />
|
18
|
-
<bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" />
|
19
|
-
</dependentAssembly>
|
20
|
-
<dependentAssembly>
|
21
|
-
<assemblyIdentity name="SharpDX.Direct2D1" publicKeyToken="b4dcf0f35e5521f1" culture="neutral" />
|
22
|
-
<bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" />
|
23
|
-
</dependentAssembly>
|
24
|
-
<dependentAssembly>
|
25
|
-
<assemblyIdentity name="SharpDX.Mathematics" publicKeyToken="b4dcf0f35e5521f1" culture="neutral" />
|
26
|
-
<bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" />
|
27
|
-
</dependentAssembly>
|
28
|
-
<dependentAssembly>
|
29
|
-
<assemblyIdentity name="SharpDX.Direct3D9" publicKeyToken="b4dcf0f35e5521f1" culture="neutral" />
|
30
|
-
<bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" />
|
31
|
-
</dependentAssembly>
|
32
|
-
<dependentAssembly>
|
33
|
-
<assemblyIdentity name="SharpDX.D3DCompiler" publicKeyToken="b4dcf0f35e5521f1" culture="neutral" />
|
34
|
-
<bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" />
|
35
|
-
</dependentAssembly>
|
36
|
-
<dependentAssembly>
|
37
|
-
<assemblyIdentity name="Toolkit" publicKeyToken="3e4669d2f30244f4" culture="neutral" />
|
38
|
-
<bindingRedirect oldVersion="0.0.0.0-3.5.0.0" newVersion="3.5.0.0" />
|
39
|
-
</dependentAssembly>
|
40
|
-
<dependentAssembly>
|
41
|
-
<assemblyIdentity name="HelixToolkit" publicKeyToken="52aa3500039caf0d" culture="neutral" />
|
42
|
-
<bindingRedirect oldVersion="0.0.0.0-2.9.0.0" newVersion="2.9.0.0" />
|
43
|
-
</dependentAssembly>
|
44
|
-
<dependentAssembly>
|
45
|
-
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
|
46
|
-
<bindingRedirect oldVersion="0.0.0.0-12.0.0.0" newVersion="12.0.0.0" />
|
47
|
-
</dependentAssembly>
|
48
|
-
<dependentAssembly>
|
49
|
-
<assemblyIdentity name="DocumentFormat.OpenXml" publicKeyToken="8fb06cb64d019a17" culture="neutral" />
|
50
|
-
<bindingRedirect oldVersion="0.0.0.0-2.19.0.0" newVersion="2.19.0.0" />
|
51
|
-
</dependentAssembly>
|
52
|
-
</assemblyBinding>
|
53
|
-
|
54
|
-
<AppContextSwitchOverrides value="Switch.System.Windows.DoNotScaleForDpiChanges=false" />
|
55
|
-
</runtime>
|
56
|
-
</configuration>
|
@@ -1,19 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"runtimeOptions": {
|
3
|
-
"tfm": "net7.0",
|
4
|
-
"frameworks": [
|
5
|
-
{
|
6
|
-
"name": "Microsoft.NETCore.App",
|
7
|
-
"version": "7.0.0"
|
8
|
-
},
|
9
|
-
{
|
10
|
-
"name": "Microsoft.WindowsDesktop.App",
|
11
|
-
"version": "7.0.0"
|
12
|
-
}
|
13
|
-
],
|
14
|
-
"configProperties": {
|
15
|
-
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
|
16
|
-
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": true
|
17
|
-
}
|
18
|
-
}
|
19
|
-
}
|