@geode/opengeodeweb-back 0.0.0-semantically-released

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.
Files changed (88) hide show
  1. package/.gitattributes +2 -0
  2. package/.github/workflows/Branch-protection.yml +11 -0
  3. package/.github/workflows/CD.yml +53 -0
  4. package/.github/workflows/prepare_pr.yml +11 -0
  5. package/.pylintrc +536 -0
  6. package/.pypirc +6 -0
  7. package/CHANGELOG.md +1223 -0
  8. package/COPYLEFT +4 -0
  9. package/LICENSE +21 -0
  10. package/README.md +32 -0
  11. package/app.py +54 -0
  12. package/config.py +29 -0
  13. package/generate_schemas.js +82 -0
  14. package/package.json +31 -0
  15. package/pyproject.toml +48 -0
  16. package/requirements.in +15 -0
  17. package/requirements.txt +116 -0
  18. package/src/OpenGeodeWeb_Back.egg-info/PKG-INFO +74 -0
  19. package/src/OpenGeodeWeb_Back.egg-info/SOURCES.txt +22 -0
  20. package/src/OpenGeodeWeb_Back.egg-info/dependency_links.txt +1 -0
  21. package/src/OpenGeodeWeb_Back.egg-info/requires.txt +28 -0
  22. package/src/OpenGeodeWeb_Back.egg-info/top_level.txt +1 -0
  23. package/src/opengeodeweb_back/__init__.py +0 -0
  24. package/src/opengeodeweb_back/geode_functions.py +330 -0
  25. package/src/opengeodeweb_back/geode_objects.py +429 -0
  26. package/src/opengeodeweb_back/inspector_functions.py +483 -0
  27. package/src/opengeodeweb_back/routes/blueprint_routes.py +178 -0
  28. package/src/opengeodeweb_back/routes/schemas/allowed_files.json +20 -0
  29. package/src/opengeodeweb_back/routes/schemas/allowed_objects.json +16 -0
  30. package/src/opengeodeweb_back/routes/schemas/geode_objects_and_output_extensions.json +21 -0
  31. package/src/opengeodeweb_back/routes/schemas/geographic_coordinate_systems.json +17 -0
  32. package/src/opengeodeweb_back/routes/schemas/missing_files.json +16 -0
  33. package/src/opengeodeweb_back/routes/schemas/upload_file.json +15 -0
  34. package/tests/__init__.py +0 -0
  35. package/tests/conftest.py +12 -0
  36. package/tests/corbi.og_brep +0 -0
  37. package/tests/data/test.bmp +0 -0
  38. package/tests/data/test.dat +11 -0
  39. package/tests/data/test.dev +121 -0
  40. package/tests/data/test.dxf +4184 -0
  41. package/tests/data/test.grdecl +2555 -0
  42. package/tests/data/test.jpg +0 -0
  43. package/tests/data/test.lso +3637 -0
  44. package/tests/data/test.ml +78770 -0
  45. package/tests/data/test.msh +800 -0
  46. package/tests/data/test.obj +24 -0
  47. package/tests/data/test.og_brep +0 -0
  48. package/tests/data/test.og_edc2d +0 -0
  49. package/tests/data/test.og_edc3d +0 -0
  50. package/tests/data/test.og_grp +0 -0
  51. package/tests/data/test.og_hso3d +0 -0
  52. package/tests/data/test.og_img2d +3 -0
  53. package/tests/data/test.og_img3d +0 -0
  54. package/tests/data/test.og_lrgd2d +0 -0
  55. package/tests/data/test.og_lrgd3d +0 -0
  56. package/tests/data/test.og_psf2d +0 -0
  57. package/tests/data/test.og_psf3d +0 -0
  58. package/tests/data/test.og_pso3d +0 -0
  59. package/tests/data/test.og_pts2d +0 -0
  60. package/tests/data/test.og_pts3d +0 -0
  61. package/tests/data/test.og_rgd2d +0 -0
  62. package/tests/data/test.og_rgd3d +0 -0
  63. package/tests/data/test.og_sctn +0 -0
  64. package/tests/data/test.og_strm +0 -0
  65. package/tests/data/test.og_tsf2d +0 -0
  66. package/tests/data/test.og_tsf3d +0 -0
  67. package/tests/data/test.og_tso3d +0 -0
  68. package/tests/data/test.og_vts +0 -0
  69. package/tests/data/test.og_xsctn +0 -0
  70. package/tests/data/test.ply +20 -0
  71. package/tests/data/test.png +0 -0
  72. package/tests/data/test.shp +0 -0
  73. package/tests/data/test.shx +0 -0
  74. package/tests/data/test.shz +0 -0
  75. package/tests/data/test.smesh +2049 -0
  76. package/tests/data/test.stl +7191 -0
  77. package/tests/data/test.svg +144 -0
  78. package/tests/data/test.ts +266 -0
  79. package/tests/data/test.txt +11 -0
  80. package/tests/data/test.vo +49 -0
  81. package/tests/data/test.vti +3 -0
  82. package/tests/data/test.vtp +212 -0
  83. package/tests/data/test.vtu +3585 -0
  84. package/tests/data/test.wl +76 -0
  85. package/tests/data/test__ascii@@ +1003 -0
  86. package/tests/test_functions.py +291 -0
  87. package/tests/test_routes.py +131 -0
  88. package/tmp.3491.json +0 -0
package/COPYLEFT ADDED
@@ -0,0 +1,4 @@
1
+ ## Dependencies
2
+
3
+ Flask: BSD-3-Clause
4
+ Copyright (c) 2010-present, Pallets.
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2019 - 2024 Geode-solutions
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,32 @@
1
+ <h1 align="center">OpenGeodeWeb-Back<sup><i>by Geode-solutions</i></sup></h1>
2
+ <h3 align="center">OpenSource Python framework based on OpenGeode</h3>
3
+
4
+ <p align="center">
5
+ <img src="https://github.com/Geode-solutions/OpenGeodeWeb-Back/workflows/CI/badge.svg" alt="Build Status">
6
+ <img src="https://github.com/Geode-solutions/OpenGeodeWeb-Back/workflows/CD/badge.svg" alt="Deploy Status">
7
+ <img src="https://codecov.io/gh/Geode-solutions/OpenGeodeWeb-Back/branch/master/graph/badge.svg" alt="Coverage Status">
8
+ <img src="https://img.shields.io/github/release/Geode-solutions/OpenGeodeWeb-Back.svg" alt="Version">
9
+ <img src="https://img.shields.io/pypi/v/opengeode-core" alt="PyPI" >
10
+ </p>
11
+
12
+ <p align="center">
13
+ <img src="https://img.shields.io/badge/Python-3-blue.svg" alt="Language">
14
+ <img src="https://img.shields.io/badge/license-MIT-blue.svg" alt="License">
15
+ <img src="https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg" alt="Semantic-release">
16
+ </p>
17
+
18
+ ---
19
+
20
+ ## Introduction
21
+
22
+ OpenGeodeWeb-Back is an open source framework that proposes handy python functions and wrappers for the OpenGeode ecosystem
23
+
24
+ ## Changelog
25
+
26
+ Detailed changes for each release are documented in the [release notes](https://github.com/Geode-solutions/OpenGeodeWeb-Back/releases).
27
+
28
+ ## License
29
+
30
+ [MIT](https://opensource.org/licenses/MIT)
31
+
32
+ Copyright (c) 2019 - 2024, Geode-solutions
package/app.py ADDED
@@ -0,0 +1,54 @@
1
+ """ Packages """
2
+ import os
3
+
4
+ import flask
5
+ import flask_cors
6
+ from werkzeug.exceptions import HTTPException
7
+
8
+ from werkzeug.exceptions import HTTPException
9
+
10
+ from src.opengeodeweb_back.routes import blueprint_routes
11
+
12
+
13
+ """ Global config """
14
+ app = flask.Flask(__name__)
15
+
16
+ """ Config variables """
17
+ FLASK_DEBUG = True if os.environ.get("FLASK_DEBUG", default=None) == "True" else False
18
+
19
+ if FLASK_DEBUG == False:
20
+ app.config.from_object("config.ProdConfig")
21
+ else:
22
+ app.config.from_object("config.DevConfig")
23
+
24
+
25
+ PORT = int(app.config.get("PORT"))
26
+ ORIGINS = app.config.get("ORIGINS")
27
+ SSL = app.config.get("SSL")
28
+
29
+ flask_cors.CORS(app, origins=ORIGINS)
30
+ app.register_blueprint(
31
+ blueprint_routes.routes,
32
+ url_prefix="/",
33
+ name="blueprint_routes",
34
+ )
35
+
36
+
37
+ @app.errorhandler(HTTPException)
38
+ def handle_exception(e):
39
+ response = e.get_response()
40
+ response.data = flask.json.dumps(
41
+ {
42
+ "code": e.code,
43
+ "name": e.name,
44
+ "description": e.description,
45
+ }
46
+ )
47
+ response.content_type = "application/json"
48
+ return response
49
+
50
+
51
+ # ''' Main '''
52
+ if __name__ == "__main__":
53
+ print(f"Python is running in {FLASK_DEBUG} mode")
54
+ app.run(debug=FLASK_DEBUG, host="0.0.0.0", port=PORT, ssl_context=SSL)
package/config.py ADDED
@@ -0,0 +1,29 @@
1
+ """ Flask configuration """
2
+ import os
3
+
4
+
5
+ class Config(object):
6
+ FLASK_DEBUG = os.environ.get("FLASK_DEBUG", default=False)
7
+ ID = os.environ.get("ID", default=None)
8
+ PORT = "5000"
9
+ CORS_HEADERS = "Content-Type"
10
+ UPLOAD_FOLDER = "./uploads"
11
+ WORKFLOWS_DATA_FOLDER = "./data_workflows/"
12
+ LOCK_FOLDER = "./lock/"
13
+ TIME_FOLDER = "./time/"
14
+
15
+
16
+ class ProdConfig(Config):
17
+ SSL = None
18
+ ORIGINS = ["*"]
19
+ MINUTES_BEFORE_TIMEOUT = "5"
20
+ SECONDS_BETWEEN_SHUTDOWNS = "150"
21
+ DATA_FOLDER = "/data/"
22
+
23
+
24
+ class DevConfig(Config):
25
+ SSL = None
26
+ ORIGINS = "http://localhost:3000"
27
+ MINUTES_BEFORE_TIMEOUT = "1000"
28
+ SECONDS_BETWEEN_SHUTDOWNS = "60"
29
+ DATA_FOLDER = "./data/"
@@ -0,0 +1,82 @@
1
+ const fs = require("fs");
2
+ const path = require("path");
3
+ const glob = require("glob");
4
+ const process = require("process");
5
+
6
+ const findDirectoryPath = (targetDirectoryName) => {
7
+ const pathToCheck = path.join(process.cwd(), targetDirectoryName);
8
+ const folders = fs
9
+ .readdirSync(pathToCheck, { withFileTypes: true })
10
+ .filter(
11
+ (folder) => folder.isDirectory() && !folder.name.endsWith(".egg-info")
12
+ )
13
+ .map((folder) => ({
14
+ name: folder.name,
15
+ path: path.join(pathToCheck, folder.name),
16
+ }));
17
+ const routesDirectory = path.join(folders[0].path, "routes");
18
+ return [routesDirectory, folders[0].name];
19
+ };
20
+
21
+ const [directoryPath, project_name] = findDirectoryPath("src/");
22
+
23
+ const outputFile = path.join(process.cwd(), "schemas.json");
24
+
25
+ function return_json_schema(directoryPath, folder_path, project_name) {
26
+ const folders = fs
27
+ .readdirSync(path.normalize(directoryPath), { withFileTypes: true })
28
+ .filter((folder) => folder.isDirectory())
29
+ .map((folder) => ({
30
+ name: folder.name,
31
+ path: path.join(directoryPath, folder.name),
32
+ }));
33
+ var folders_schemas = {};
34
+ folders.forEach((folder) => {
35
+ if (folder.name == "schemas") {
36
+ const jsonFiles = glob.sync(path.join(folder.path, "**/*.json"));
37
+ var schemas = {};
38
+ jsonFiles.forEach((filePath) => {
39
+ try {
40
+ const fileContent = fs.readFileSync(filePath, "utf8");
41
+ var jsonData = JSON.parse(fileContent);
42
+ var filename = filePath
43
+ .replace(/^.*[\\/]/, "")
44
+ .replace(/\.[^/.]+$/, "");
45
+ var route = jsonData["route"];
46
+ jsonData["$id"] = project_name + folder_path + route;
47
+ schemas[filename] = jsonData;
48
+ } catch (error) {
49
+ console.error(
50
+ `Erreur lors de la lecture du fichier ${filePath}:`,
51
+ error
52
+ );
53
+ }
54
+ });
55
+ folders_schemas = Object.keys(schemas).reduce((acc, key) => {
56
+ const currentSchema = schemas[key];
57
+ const modifiedSchema = {
58
+ $id: path.join(folder_path, currentSchema["$id"]),
59
+ ...currentSchema,
60
+ };
61
+ acc[key] = modifiedSchema;
62
+ return acc;
63
+ }, folders_schemas);
64
+ } else {
65
+ var new_folder_path = folder_path + "/" + folder.name;
66
+ var test = return_json_schema(folder.path, new_folder_path, project_name);
67
+ folders_schemas[folder.name] = test;
68
+ }
69
+ });
70
+ return folders_schemas;
71
+ }
72
+
73
+ if (fs.existsSync(outputFile)) {
74
+ fs.unlinkSync(outputFile);
75
+ }
76
+
77
+ const finalJson = {};
78
+ finalJson[project_name] = return_json_schema(directoryPath, "", project_name);
79
+
80
+ fs.writeFileSync(outputFile, JSON.stringify(finalJson, null, 2));
81
+
82
+ console.log("Fichier JSON créé avec succès :", outputFile);
package/package.json ADDED
@@ -0,0 +1,31 @@
1
+ {
2
+ "name": "@geode/opengeodeweb-back",
3
+ "scripts": {
4
+ "json": "node generate_schemas.js"
5
+ },
6
+ "dependencies": {
7
+ "glob": "^10.3.10"
8
+ },
9
+ "exports": "./schemas.json",
10
+ "version": "0.0.0-semantically-released",
11
+ "description": "",
12
+ "main": "generate_schemas.js",
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "git+https://github.com/Geode-solutions/OpenGeodeWeb-Back.git"
16
+ },
17
+ "author": {
18
+ "name": "Geode-solutions",
19
+ "email": "contact@geode-solutions.com",
20
+ "url": "https://geode-solutions.com/"
21
+ },
22
+ "license": "MIT",
23
+ "bugs": {
24
+ "url": "https://github.com/Geode-solutions/OpenGeodeWeb-Back/issues"
25
+ },
26
+ "homepage": "https://github.com/Geode-solutions/OpenGeodeWeb-Back",
27
+ "publishConfig": {
28
+ "access": "public"
29
+ },
30
+ "directory": "./src/opengeodeweb_back"
31
+ }
package/pyproject.toml ADDED
@@ -0,0 +1,48 @@
1
+ [build-system]
2
+ requires = ["setuptools"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+
6
+ [project]
7
+ name = "OpenGeodeWeb-Back"
8
+ version = "3.3.0-rc.13"
9
+ dynamic = ["dependencies"]
10
+ authors = [
11
+ { name="Geode-solutions", email="team-web@geode-solutions.com" },
12
+ ]
13
+ description = "OpenGeodeWeb-Back is an open source framework that proposes handy python functions and wrappers for the OpenGeode ecosystem"
14
+ readme = "README.md"
15
+ requires-python = ">=3.8"
16
+ classifiers = [
17
+ "Programming Language :: Python :: 3",
18
+ "License :: OSI Approved :: MIT License",
19
+ "Operating System :: OS Independent",
20
+ ]
21
+
22
+ [project.urls]
23
+ "Homepage" = "https://github.com/Geode-solutions/OpenGeodeWeb-Back"
24
+ "Bug Tracker" = "https://github.com/Geode-solutions/OpenGeodeWeb-Back/issues"
25
+
26
+ [tool.setuptools.dynamic]
27
+ dependencies = {file = ["requirements.txt"]}
28
+
29
+ [tool.setuptools.packages.find]
30
+ where = ["src"]
31
+
32
+ [tool.setuptools.package-data]
33
+ "opengeodeweb_back.routes.schemas" = ["*.json"]
34
+
35
+ [tool.semantic_release]
36
+ version_toml = [
37
+ "pyproject.toml:project.version",
38
+ ]
39
+
40
+ [tool.semantic_release.remote.token]
41
+ env = "GH_TOKEN"
42
+
43
+ [tool.semantic_release.branches.master]
44
+ match = "master"
45
+
46
+ [tool.semantic_release.branches.next]
47
+ match = "next"
48
+ prerelease = true
@@ -0,0 +1,15 @@
1
+ OpenGeode-core
2
+ OpenGeode-IO
3
+ OpenGeode-Inspector
4
+ OpenGeode-Geosciences
5
+ OpenGeode-GeosciencesIO
6
+ Geode-Viewables
7
+ geode-numerics
8
+ geode-simplex
9
+ geode-explicit
10
+ geode-implicit
11
+ geode-common
12
+ jsonschema
13
+ Flask[async]
14
+ Flask-Cors
15
+ werkzeug
@@ -0,0 +1,116 @@
1
+ #
2
+ # This file is autogenerated by pip-compile with Python 3.10
3
+ # by the following command:
4
+ #
5
+ # pip-compile requirements.in
6
+ #
7
+ asgiref==3.7.2
8
+ # via flask
9
+ attrs==23.2.0
10
+ # via
11
+ # jsonschema
12
+ # referencing
13
+ blinker==1.7.0
14
+ # via flask
15
+ click==8.1.7
16
+ # via flask
17
+ flask[async]==3.0.0
18
+ # via
19
+ # -r requirements.in
20
+ # flask-cors
21
+ flask-cors==4.0.0
22
+ # via -r requirements.in
23
+ geode-background==7.6.1
24
+ # via
25
+ # geode-explicit
26
+ # geode-implicit
27
+ # geode-simplex
28
+ geode-common==30.0.12
29
+ # via
30
+ # -r requirements.in
31
+ # geode-background
32
+ # geode-explicit
33
+ # geode-implicit
34
+ # geode-numerics
35
+ # geode-simplex
36
+ # geode-viewables
37
+ geode-conversion==5.1.8
38
+ # via
39
+ # geode-explicit
40
+ # geode-implicit
41
+ geode-explicit==4.3.11
42
+ # via
43
+ # -r requirements.in
44
+ # geode-implicit
45
+ geode-implicit==2.5.5
46
+ # via -r requirements.in
47
+ geode-numerics==4.2.5
48
+ # via
49
+ # -r requirements.in
50
+ # geode-implicit
51
+ # geode-simplex
52
+ geode-simplex==6.3.4
53
+ # via -r requirements.in
54
+ geode-viewables==2.2.0
55
+ # via -r requirements.in
56
+ itsdangerous==2.1.2
57
+ # via flask
58
+ jinja2==3.1.3
59
+ # via flask
60
+ jsonschema==4.21.0
61
+ # via -r requirements.in
62
+ jsonschema-specifications==2023.12.1
63
+ # via jsonschema
64
+ markupsafe==2.1.3
65
+ # via
66
+ # jinja2
67
+ # werkzeug
68
+ opengeode-core==14.12.1
69
+ # via
70
+ # -r requirements.in
71
+ # geode-background
72
+ # geode-common
73
+ # geode-conversion
74
+ # geode-explicit
75
+ # geode-implicit
76
+ # geode-numerics
77
+ # geode-simplex
78
+ # geode-viewables
79
+ # opengeode-geosciences
80
+ # opengeode-geosciencesio
81
+ # opengeode-inspector
82
+ # opengeode-io
83
+ opengeode-geosciences==7.3.4
84
+ # via
85
+ # -r requirements.in
86
+ # geode-implicit
87
+ # geode-viewables
88
+ # opengeode-geosciencesio
89
+ opengeode-geosciencesio==4.5.5
90
+ # via
91
+ # -r requirements.in
92
+ # geode-implicit
93
+ opengeode-inspector==4.0.5
94
+ # via
95
+ # -r requirements.in
96
+ # geode-explicit
97
+ # geode-implicit
98
+ opengeode-io==6.3.0
99
+ # via
100
+ # -r requirements.in
101
+ # geode-implicit
102
+ # geode-viewables
103
+ referencing==0.32.1
104
+ # via
105
+ # jsonschema
106
+ # jsonschema-specifications
107
+ rpds-py==0.17.1
108
+ # via
109
+ # jsonschema
110
+ # referencing
111
+ typing-extensions==4.9.0
112
+ # via asgiref
113
+ werkzeug==3.0.1
114
+ # via
115
+ # -r requirements.in
116
+ # flask
@@ -0,0 +1,74 @@
1
+ Metadata-Version: 2.1
2
+ Name: OpenGeodeWeb-Back
3
+ Version: 3.3.0rc13
4
+ Summary: OpenGeodeWeb-Back is an open source framework that proposes handy python functions and wrappers for the OpenGeode ecosystem
5
+ Author-email: Geode-solutions <team-web@geode-solutions.com>
6
+ Project-URL: Homepage, https://github.com/Geode-solutions/OpenGeodeWeb-Back
7
+ Project-URL: Bug Tracker, https://github.com/Geode-solutions/OpenGeodeWeb-Back/issues
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.8
12
+ Description-Content-Type: text/markdown
13
+ License-File: LICENSE
14
+ Requires-Dist: asgiref==3.7.2
15
+ Requires-Dist: attrs==23.2.0
16
+ Requires-Dist: blinker==1.7.0
17
+ Requires-Dist: click==8.1.7
18
+ Requires-Dist: flask[async]==3.0.0
19
+ Requires-Dist: flask-cors==4.0.0
20
+ Requires-Dist: geode-background==7.6.1
21
+ Requires-Dist: geode-common==30.0.12
22
+ Requires-Dist: geode-conversion==5.1.8
23
+ Requires-Dist: geode-explicit==4.3.11
24
+ Requires-Dist: geode-implicit==2.5.5
25
+ Requires-Dist: geode-numerics==4.2.5
26
+ Requires-Dist: geode-simplex==6.3.4
27
+ Requires-Dist: geode-viewables==2.2.0
28
+ Requires-Dist: itsdangerous==2.1.2
29
+ Requires-Dist: jinja2==3.1.3
30
+ Requires-Dist: jsonschema==4.21.0
31
+ Requires-Dist: jsonschema-specifications==2023.12.1
32
+ Requires-Dist: markupsafe==2.1.3
33
+ Requires-Dist: opengeode-core==14.12.1
34
+ Requires-Dist: opengeode-geosciences==7.3.4
35
+ Requires-Dist: opengeode-geosciencesio==4.5.5
36
+ Requires-Dist: opengeode-inspector==4.0.5
37
+ Requires-Dist: opengeode-io==6.3.0
38
+ Requires-Dist: referencing==0.32.1
39
+ Requires-Dist: rpds-py==0.17.1
40
+ Requires-Dist: typing-extensions==4.9.0
41
+ Requires-Dist: werkzeug==3.0.1
42
+
43
+ <h1 align="center">OpenGeodeWeb-Back<sup><i>by Geode-solutions</i></sup></h1>
44
+ <h3 align="center">OpenSource Python framework based on OpenGeode</h3>
45
+
46
+ <p align="center">
47
+ <img src="https://github.com/Geode-solutions/OpenGeodeWeb-Back/workflows/CI/badge.svg" alt="Build Status">
48
+ <img src="https://github.com/Geode-solutions/OpenGeodeWeb-Back/workflows/CD/badge.svg" alt="Deploy Status">
49
+ <img src="https://codecov.io/gh/Geode-solutions/OpenGeodeWeb-Back/branch/master/graph/badge.svg" alt="Coverage Status">
50
+ <img src="https://img.shields.io/github/release/Geode-solutions/OpenGeodeWeb-Back.svg" alt="Version">
51
+ <img src="https://img.shields.io/pypi/v/opengeode-core" alt="PyPI" >
52
+ </p>
53
+
54
+ <p align="center">
55
+ <img src="https://img.shields.io/badge/Python-3-blue.svg" alt="Language">
56
+ <img src="https://img.shields.io/badge/license-MIT-blue.svg" alt="License">
57
+ <img src="https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg" alt="Semantic-release">
58
+ </p>
59
+
60
+ ---
61
+
62
+ ## Introduction
63
+
64
+ OpenGeodeWeb-Back is an open source framework that proposes handy python functions and wrappers for the OpenGeode ecosystem
65
+
66
+ ## Changelog
67
+
68
+ Detailed changes for each release are documented in the [release notes](https://github.com/Geode-solutions/OpenGeodeWeb-Back/releases).
69
+
70
+ ## License
71
+
72
+ [MIT](https://opensource.org/licenses/MIT)
73
+
74
+ Copyright (c) 2019 - 2024, Geode-solutions
@@ -0,0 +1,22 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ requirements.txt
5
+ src/OpenGeodeWeb_Back.egg-info/PKG-INFO
6
+ src/OpenGeodeWeb_Back.egg-info/SOURCES.txt
7
+ src/OpenGeodeWeb_Back.egg-info/dependency_links.txt
8
+ src/OpenGeodeWeb_Back.egg-info/requires.txt
9
+ src/OpenGeodeWeb_Back.egg-info/top_level.txt
10
+ src/opengeodeweb_back/__init__.py
11
+ src/opengeodeweb_back/geode_functions.py
12
+ src/opengeodeweb_back/geode_objects.py
13
+ src/opengeodeweb_back/inspector_functions.py
14
+ src/opengeodeweb_back/routes/blueprint_routes.py
15
+ src/opengeodeweb_back/routes/schemas/allowed_files.json
16
+ src/opengeodeweb_back/routes/schemas/allowed_objects.json
17
+ src/opengeodeweb_back/routes/schemas/geode_objects_and_output_extensions.json
18
+ src/opengeodeweb_back/routes/schemas/geographic_coordinate_systems.json
19
+ src/opengeodeweb_back/routes/schemas/missing_files.json
20
+ src/opengeodeweb_back/routes/schemas/upload_file.json
21
+ tests/test_functions.py
22
+ tests/test_routes.py
@@ -0,0 +1,28 @@
1
+ asgiref==3.7.2
2
+ attrs==23.2.0
3
+ blinker==1.7.0
4
+ click==8.1.7
5
+ flask[async]==3.0.0
6
+ flask-cors==4.0.0
7
+ geode-background==7.6.1
8
+ geode-common==30.0.12
9
+ geode-conversion==5.1.8
10
+ geode-explicit==4.3.11
11
+ geode-implicit==2.5.5
12
+ geode-numerics==4.2.5
13
+ geode-simplex==6.3.4
14
+ geode-viewables==2.2.0
15
+ itsdangerous==2.1.2
16
+ jinja2==3.1.3
17
+ jsonschema==4.21.0
18
+ jsonschema-specifications==2023.12.1
19
+ markupsafe==2.1.3
20
+ opengeode-core==14.12.1
21
+ opengeode-geosciences==7.3.4
22
+ opengeode-geosciencesio==4.5.5
23
+ opengeode-inspector==4.0.5
24
+ opengeode-io==6.3.0
25
+ referencing==0.32.1
26
+ rpds-py==0.17.1
27
+ typing-extensions==4.9.0
28
+ werkzeug==3.0.1
@@ -0,0 +1 @@
1
+ opengeodeweb_back
File without changes