OpenGeode-IO 7.7.0rc1__cp313-cp313-win_amd64.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.
@@ -0,0 +1,8 @@
1
+ ## Copyright (c) 2019 - 2026 Geode-solutions
2
+
3
+ import os, pathlib
4
+ os.add_dll_directory(pathlib.Path(__file__).parent.resolve().joinpath('bin'))
5
+
6
+ from .image_io import *
7
+ from .mesh_io import *
8
+ from .model_io import *
@@ -0,0 +1,12 @@
1
+ from __future__ import annotations
2
+ import opengeode as opengeode
3
+ from opengeode_io.bin.opengeode_io_py_image import OpenGeodeIOImageLibrary
4
+ from opengeode_io.bin.opengeode_io_py_mesh import OpenGeodeIOMeshLibrary
5
+ from opengeode_io.bin.opengeode_io_py_model import OpenGeodeIOModelLibrary
6
+ import os as os
7
+ import pathlib as pathlib
8
+ from . import bin
9
+ from . import image_io
10
+ from . import mesh_io
11
+ from . import model_io
12
+ __all__: list[str] = ['OpenGeodeIOImageLibrary', 'OpenGeodeIOMeshLibrary', 'OpenGeodeIOModelLibrary', 'bin', 'image_io', 'mesh_io', 'model_io', 'opengeode', 'os', 'pathlib']
Binary file
Binary file
Binary file
@@ -0,0 +1,5 @@
1
+ from __future__ import annotations
2
+ from . import opengeode_io_py_image
3
+ from . import opengeode_io_py_mesh
4
+ from . import opengeode_io_py_model
5
+ __all__: list[str] = ['opengeode_io_py_image', 'opengeode_io_py_mesh', 'opengeode_io_py_model']
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,9 @@
1
+ """
2
+ OpenGeode-IO Python binding for image
3
+ """
4
+ from __future__ import annotations
5
+ __all__: list[str] = ['OpenGeodeIOImageLibrary']
6
+ class OpenGeodeIOImageLibrary:
7
+ @staticmethod
8
+ def initialize() -> None:
9
+ ...
@@ -0,0 +1,9 @@
1
+ """
2
+ OpenGeode-IO Python binding for mesh
3
+ """
4
+ from __future__ import annotations
5
+ __all__: list[str] = ['OpenGeodeIOMeshLibrary']
6
+ class OpenGeodeIOMeshLibrary:
7
+ @staticmethod
8
+ def initialize() -> None:
9
+ ...
@@ -0,0 +1,9 @@
1
+ """
2
+ OpenGeode-IO Python binding for model
3
+ """
4
+ from __future__ import annotations
5
+ __all__: list[str] = ['OpenGeodeIOModelLibrary']
6
+ class OpenGeodeIOModelLibrary:
7
+ @staticmethod
8
+ def initialize() -> None:
9
+ ...
Binary file
Binary file
@@ -0,0 +1,25 @@
1
+ # Copyright (c) 2019 - 2026 Geode-solutions
2
+ #
3
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ # of this software and associated documentation files (the "Software"), to deal
5
+ # in the Software without restriction, including without limitation the rights
6
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
+ # copies of the Software, and to permit persons to whom the Software is
8
+ # furnished to do so, subject to the following conditions:
9
+ #
10
+ # The above copyright notice and this permission notice shall be included in
11
+ # all copies or substantial portions of the Software.
12
+ #
13
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19
+ # SOFTWARE.
20
+
21
+ import opengeode
22
+
23
+ from .bin.opengeode_io_py_image import *
24
+
25
+ OpenGeodeIOImageLibrary.initialize()
@@ -0,0 +1,4 @@
1
+ from __future__ import annotations
2
+ import opengeode as opengeode
3
+ from opengeode_io.bin.opengeode_io_py_image import OpenGeodeIOImageLibrary
4
+ __all__: list[str] = ['OpenGeodeIOImageLibrary', 'opengeode']
@@ -0,0 +1,25 @@
1
+ # Copyright (c) 2019 - 2026 Geode-solutions
2
+ #
3
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ # of this software and associated documentation files (the "Software"), to deal
5
+ # in the Software without restriction, including without limitation the rights
6
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
+ # copies of the Software, and to permit persons to whom the Software is
8
+ # furnished to do so, subject to the following conditions:
9
+ #
10
+ # The above copyright notice and this permission notice shall be included in
11
+ # all copies or substantial portions of the Software.
12
+ #
13
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19
+ # SOFTWARE.
20
+
21
+ import opengeode
22
+
23
+ from .bin.opengeode_io_py_mesh import *
24
+
25
+ OpenGeodeIOMeshLibrary.initialize()
@@ -0,0 +1,4 @@
1
+ from __future__ import annotations
2
+ import opengeode as opengeode
3
+ from opengeode_io.bin.opengeode_io_py_mesh import OpenGeodeIOMeshLibrary
4
+ __all__: list[str] = ['OpenGeodeIOMeshLibrary', 'opengeode']
@@ -0,0 +1,25 @@
1
+ # Copyright (c) 2019 - 2026 Geode-solutions
2
+ #
3
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ # of this software and associated documentation files (the "Software"), to deal
5
+ # in the Software without restriction, including without limitation the rights
6
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
+ # copies of the Software, and to permit persons to whom the Software is
8
+ # furnished to do so, subject to the following conditions:
9
+ #
10
+ # The above copyright notice and this permission notice shall be included in
11
+ # all copies or substantial portions of the Software.
12
+ #
13
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19
+ # SOFTWARE.
20
+
21
+ import opengeode
22
+
23
+ from .bin.opengeode_io_py_model import *
24
+
25
+ OpenGeodeIOModelLibrary.initialize()
@@ -0,0 +1,4 @@
1
+ from __future__ import annotations
2
+ import opengeode as opengeode
3
+ from opengeode_io.bin.opengeode_io_py_model import OpenGeodeIOModelLibrary
4
+ __all__: list[str] = ['OpenGeodeIOModelLibrary', 'opengeode']
opengeode_io/py.typed ADDED
File without changes
@@ -0,0 +1,74 @@
1
+ Metadata-Version: 2.4
2
+ Name: OpenGeode-IO
3
+ Version: 7.7.0rc1
4
+ Summary: Implementation of input and output formats for OpenGeode
5
+ Author-email: Geode-solutions <contact@geode-solutions.com>
6
+ License: MIT
7
+ Requires-Python: <3.15,>=3.10
8
+ Description-Content-Type: text/markdown
9
+ Requires-Dist: opengeode-core==17.*,>=17.3.0rc1
10
+
11
+ <h1 align="center">OpenGeode-IO<sup><i>by Geode-solutions</i></sup></h1>
12
+ <h3 align="center">Input/Output formats for OpenGeode</h3>
13
+
14
+ <p align="center">
15
+ <img src="https://github.com/Geode-solutions/OpenGeode-IO/actions/workflows/schedule.yml/badge.svg" alt="Build Status">
16
+ <img src="https://github.com/Geode-solutions/OpenGeode-IO/actions/workflows/deploy.yml/badge.svg" alt="Deploy Status">
17
+ <img src="https://img.shields.io/github/release/Geode-solutions/OpenGeode-IO.svg" alt="Version">
18
+ <img src="https://img.shields.io/pypi/v/opengeode-io" alt="PyPI" >
19
+ </p>
20
+
21
+ <p align="center">
22
+ <img src="https://img.shields.io/static/v1?label=Windows&logo=windows&logoColor=white&message=support&color=success" alt="Windows support">
23
+ <img src="https://img.shields.io/static/v1?label=Ubuntu&logo=Ubuntu&logoColor=white&message=support&color=success" alt="Ubuntu support">
24
+ <img src="https://img.shields.io/static/v1?label=Red%20Hat&logo=Red-Hat&logoColor=white&message=support&color=success" alt="Red Hat support">
25
+ </p>
26
+
27
+ <p align="center">
28
+ <img src="https://img.shields.io/badge/C%2B%2B-17-blue.svg" alt="Language">
29
+ <img src="https://img.shields.io/badge/license-MIT-blue.svg" alt="License">
30
+ <img src="https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg" alt="Semantic-release">
31
+ </p>
32
+
33
+ <p align="center">
34
+ <a href="https://geode-solutions.com/#slack">
35
+ <img src="https://img.icons8.com/?size=20&id=kikR2jIn6485&format=png&color=000000" alt="Slack invite">
36
+ </a>
37
+ <a href="https://www.linkedin.com/company/geode-solutions">
38
+ <img src="https://img.icons8.com/?size=25&id=13930&format=png&color=000000" alt="Linkedin">
39
+ </a>
40
+ <a href="mailto:contact@geode-solutions.com">
41
+ <img src="https://img.icons8.com/?size=24&id=YRRhCXfA0Vd0&format=png&color=999999" alt="Mail Us">
42
+ </a>
43
+ </p>
44
+
45
+ ---
46
+
47
+ ## Introduction
48
+
49
+ OpenGeode-IO provides input and output formats for [OpenGeode] models and meshes.
50
+
51
+ [OpenGeode]: https://github.com/Geode-solutions/OpenGeode
52
+
53
+ ## Documentation
54
+
55
+ To check out our live documentation, visit [docs.geode-solutions.com](https://docs.geode-solutions.com).
56
+
57
+ Installing OpenGeode-IO is done:
58
+
59
+ - either, by compiling the C++ source.
60
+ - or, by using pip command `pip install OpenGeode-IO` and add `import opengeode_io` in your Python script.
61
+
62
+ ## Questions
63
+
64
+ For questions and support please use the official [slack](https://geode-solutions.com/#slack) and go to the channel #io. The issue list of this repository is exclusively for bug reports and feature requests.
65
+
66
+ ## Changelog
67
+
68
+ Detailed changes for each release are documented in the [release notes](https://github.com/Geode-solutions/OpenGeode-IO/releases).
69
+
70
+ ## License
71
+
72
+ [MIT](https://opensource.org/licenses/MIT)
73
+
74
+ Copyright (c) 2019 - 2026, Geode-solutions
@@ -0,0 +1,31 @@
1
+ opengeode_io/__init__.py,sha256=wIQ6WmDL5yFRoc-bWtWtkSvFbIoGVb75802-jPfE0eM,223
2
+ opengeode_io/__init__.pyi,sha256=T2aD19M9NoRQnPOPnTLrtWLdXZempez8hOJKmw8Hvfc,602
3
+ opengeode_io/image_io.py,sha256=8bCa4xJBO62xqUUvSgIKwLHy4aawhORl8MkDIrIhLt8,1224
4
+ opengeode_io/image_io.pyi,sha256=S3P0s0-YMC1PS2LepcEA6HKiOuKyXhxQQM2GBIrgHIY,206
5
+ opengeode_io/mesh_io.py,sha256=H2ZMsxskZtqgt2iC_ZhslINZDUKruDAZli19ptpHODE,1222
6
+ opengeode_io/mesh_io.pyi,sha256=b4nnmwJZoSu2dgA5W-Clng9hYXZlrK_RXPrWuDYtBtY,203
7
+ opengeode_io/model_io.py,sha256=_TWouaxwI-qQaoSrxxp__XqqGrCbl4PvUvDgb71tqvQ,1224
8
+ opengeode_io/model_io.pyi,sha256=OjTqtLu-fUnl4Acoc8IbDYBQ99FAj37UzQDtG_kHwJs,206
9
+ opengeode_io/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
+ opengeode_io/bin/OpenGeode-IO_image.dll,sha256=gQi5Iw9cx6oIzqtg0rG5_WYntZC6SnRpzn1hLGB_bLg,90112
11
+ opengeode_io/bin/OpenGeode-IO_mesh.dll,sha256=x_iIazLUF1sFxKeUS3NFXqF9ePAJ3dgled6WSkxCbC4,1346048
12
+ opengeode_io/bin/OpenGeode-IO_model.dll,sha256=P1AcgkY64bOyjPyJ_e5OvNEm5Gd0qXi6jNpkVOqgQfo,349696
13
+ opengeode_io/bin/__init__.pyi,sha256=BuoMcqrqPfx3ivgNmaQMXBnErTykcWSIKMHsyTAu6d4,243
14
+ opengeode_io/bin/concrt140.dll,sha256=JAU1XwpYBnslj43zPDJ-Oj1xbqrFo6Wuu3V4Qthb03Y,324208
15
+ opengeode_io/bin/msvcp140.dll,sha256=D4hbUJpoXSu_plL-0mtfsx2I-9qwqXjGQdHHuKpGCqk,557728
16
+ opengeode_io/bin/msvcp140_1.dll,sha256=v61a70xjpmnjwUBlXN_fOVtsl5tACkR71dy2XtiCbD0,35952
17
+ opengeode_io/bin/msvcp140_2.dll,sha256=PqBvDuCYtII8t5WZ3zeA5_I8zlLBmqwx0qDUfv4zpek,280200
18
+ opengeode_io/bin/msvcp140_atomic_wait.dll,sha256=ZAsq787UhNA2jupb3Qat3QZYo6cKSSVuVg1pI7QEpHk,50304
19
+ opengeode_io/bin/msvcp140_codecvt_ids.dll,sha256=8gaaUogOyIXufwURGGEA63-toEEaK0lI-v6nc1uHihg,31872
20
+ opengeode_io/bin/opengeode_io_py_image.cp313-win_amd64.pyd,sha256=jYs_euNSVBhZ4o3oWDOxLCKVsAXr5rocEnJx2yKoXYQ,162304
21
+ opengeode_io/bin/opengeode_io_py_image.pyi,sha256=9eYQMwIdeu1CwZ_WAQtwnwZtOqvv1-Ow51ft0K6KQTM,230
22
+ opengeode_io/bin/opengeode_io_py_mesh.cp313-win_amd64.pyd,sha256=q1qexMZM1gWa-Oy__GvOQxw7_n15XTHRFsf1NlD1RJQ,161792
23
+ opengeode_io/bin/opengeode_io_py_mesh.pyi,sha256=z659WgEM9J7w3BAumEfwiuZrUr4YOhyX1UFakatlPrc,227
24
+ opengeode_io/bin/opengeode_io_py_model.cp313-win_amd64.pyd,sha256=3Jugw1byRF3vBnt3P37Jrkznh0lPIzyoH9VFOALluYw,162304
25
+ opengeode_io/bin/opengeode_io_py_model.pyi,sha256=5UmKBSs6WSJojIAAbLf0Mv1uDYdz3iqQn_OAlzQRo2s,230
26
+ opengeode_io/bin/vcruntime140.dll,sha256=1eTZo-g1-meUUBRdan2U42VzpQkxcRGQTZs3EsMNkGY,124544
27
+ opengeode_io/bin/vcruntime140_1.dll,sha256=Hy1BxKpdsLwz6_e2bXKUOoF9fObL6IBQKpQDgjYzCT8,49792
28
+ opengeode_io-7.7.0rc1.dist-info/METADATA,sha256=qgh1X2NIVhR82WNyXMmP0mY76P2UViH38iJdPd0IO3k,3163
29
+ opengeode_io-7.7.0rc1.dist-info/WHEEL,sha256=x5Wpw_tLx5PQKiWdxpqvs0e7Sg-SO0mTWdEADYDGPGA,101
30
+ opengeode_io-7.7.0rc1.dist-info/top_level.txt,sha256=UbHospLC99KjjzaIpg_8PZkv87pJ67SRlIyMrWV58CY,13
31
+ opengeode_io-7.7.0rc1.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.1)
3
+ Root-Is-Purelib: false
4
+ Tag: cp313-cp313-win_amd64
5
+
@@ -0,0 +1 @@
1
+ opengeode_io