OpenGeodeWeb-Back 5.9.0rc1__py3-none-any.whl → 5.9.0rc2__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.
- opengeodeweb_back/geode_functions.py +2 -2
- opengeodeweb_back/geode_objects.py +25 -25
- opengeodeweb_back/routes/blueprint_routes.py +20 -14
- opengeodeweb_back/utils_functions.py +62 -13
- {opengeodeweb_back-5.9.0rc1.dist-info → opengeodeweb_back-5.9.0rc2.dist-info}/METADATA +15 -19
- {opengeodeweb_back-5.9.0rc1.dist-info → opengeodeweb_back-5.9.0rc2.dist-info}/RECORD +9 -9
- {opengeodeweb_back-5.9.0rc1.dist-info → opengeodeweb_back-5.9.0rc2.dist-info}/WHEEL +0 -0
- {opengeodeweb_back-5.9.0rc1.dist-info → opengeodeweb_back-5.9.0rc2.dist-info}/licenses/LICENSE +0 -0
- {opengeodeweb_back-5.9.0rc1.dist-info → opengeodeweb_back-5.9.0rc2.dist-info}/top_level.txt +0 -0
@@ -28,8 +28,8 @@ def output_factory(geode_object: str):
|
|
28
28
|
return geode_object_value(geode_object)["output_factory"]
|
29
29
|
|
30
30
|
|
31
|
-
def
|
32
|
-
return geode_object_value(geode_object)["
|
31
|
+
def additional_files(geode_object: str, file_absolute_path: str):
|
32
|
+
return geode_object_value(geode_object)["additional_files"](file_absolute_path)
|
33
33
|
|
34
34
|
|
35
35
|
def is_loadable(geode_object: str, file_absolute_path: str):
|
@@ -25,7 +25,7 @@ def geode_objects_dict():
|
|
25
25
|
"class": og.BRep,
|
26
26
|
"input_factory": og.BRepInputFactory,
|
27
27
|
"output_factory": og.BRepOutputFactory,
|
28
|
-
"
|
28
|
+
"additional_files": og.brep_additional_files,
|
29
29
|
"is_loadable": og.is_brep_loadable,
|
30
30
|
"load": og.load_brep,
|
31
31
|
"is_saveable": og.is_brep_saveable,
|
@@ -48,7 +48,7 @@ def geode_objects_dict():
|
|
48
48
|
"class": og_gs.CrossSection,
|
49
49
|
"input_factory": og_gs.CrossSectionInputFactory,
|
50
50
|
"output_factory": og_gs.CrossSectionOutputFactory,
|
51
|
-
"
|
51
|
+
"additional_files": og_gs.cross_section_additional_files,
|
52
52
|
"is_loadable": og_gs.is_cross_section_loadable,
|
53
53
|
"load": og_gs.load_cross_section,
|
54
54
|
"is_saveable": og_gs.is_cross_section_saveable,
|
@@ -70,7 +70,7 @@ def geode_objects_dict():
|
|
70
70
|
"class": og.EdgedCurve2D,
|
71
71
|
"input_factory": og.EdgedCurveInputFactory2D,
|
72
72
|
"output_factory": og.EdgedCurveOutputFactory2D,
|
73
|
-
"
|
73
|
+
"additional_files": og.edged_curve_additional_files2D,
|
74
74
|
"is_loadable": og.is_edged_curve_loadable2D,
|
75
75
|
"load": og.load_edged_curve2D,
|
76
76
|
"is_saveable": og.is_edged_curve_saveable2D,
|
@@ -93,7 +93,7 @@ def geode_objects_dict():
|
|
93
93
|
"class": og.EdgedCurve3D,
|
94
94
|
"input_factory": og.EdgedCurveInputFactory3D,
|
95
95
|
"output_factory": og.EdgedCurveOutputFactory3D,
|
96
|
-
"
|
96
|
+
"additional_files": og.edged_curve_additional_files3D,
|
97
97
|
"is_loadable": og.is_edged_curve_loadable3D,
|
98
98
|
"load": og.load_edged_curve3D,
|
99
99
|
"is_saveable": og.is_edged_curve_saveable3D,
|
@@ -116,7 +116,7 @@ def geode_objects_dict():
|
|
116
116
|
"class": og.Graph,
|
117
117
|
"input_factory": og.GraphInputFactory,
|
118
118
|
"output_factory": og.GraphOutputFactory,
|
119
|
-
"
|
119
|
+
"additional_files": og.graph_additional_files,
|
120
120
|
"is_loadable": og.is_graph_loadable,
|
121
121
|
"load": og.load_graph,
|
122
122
|
"is_saveable": og.is_graph_saveable,
|
@@ -130,7 +130,7 @@ def geode_objects_dict():
|
|
130
130
|
"class": og.HybridSolid3D,
|
131
131
|
"input_factory": og.HybridSolidInputFactory3D,
|
132
132
|
"output_factory": og.HybridSolidOutputFactory3D,
|
133
|
-
"
|
133
|
+
"additional_files": og.hybrid_solid_additional_files3D,
|
134
134
|
"is_loadable": og.is_hybrid_solid_loadable3D,
|
135
135
|
"load": og.load_hybrid_solid3D,
|
136
136
|
"is_saveable": og.is_hybrid_solid_saveable3D,
|
@@ -154,7 +154,7 @@ def geode_objects_dict():
|
|
154
154
|
"class": og_gs.ImplicitCrossSection,
|
155
155
|
"input_factory": og_gs.ImplicitCrossSectionInputFactory,
|
156
156
|
"output_factory": og_gs.ImplicitCrossSectionOutputFactory,
|
157
|
-
"
|
157
|
+
"additional_files": og_gs.implicit_cross_section_additional_files,
|
158
158
|
"is_loadable": og_gs.is_implicit_cross_section_loadable,
|
159
159
|
"load": og_gs.load_implicit_cross_section,
|
160
160
|
"is_saveable": og_gs.is_implicit_cross_section_saveable,
|
@@ -177,7 +177,7 @@ def geode_objects_dict():
|
|
177
177
|
"class": og_gs.ImplicitStructuralModel,
|
178
178
|
"input_factory": og_gs.ImplicitStructuralModelInputFactory,
|
179
179
|
"output_factory": og_gs.ImplicitStructuralModelOutputFactory,
|
180
|
-
"
|
180
|
+
"additional_files": og_gs.implicit_structural_model_additional_files,
|
181
181
|
"is_loadable": og_gs.is_implicit_structural_model_loadable,
|
182
182
|
"load": og_gs.load_implicit_structural_model,
|
183
183
|
"is_saveable": og_gs.is_implicit_structural_model_saveable,
|
@@ -199,7 +199,7 @@ def geode_objects_dict():
|
|
199
199
|
"class": og.LightRegularGrid2D,
|
200
200
|
"input_factory": og.LightRegularGridInputFactory2D,
|
201
201
|
"output_factory": og.LightRegularGridOutputFactory2D,
|
202
|
-
"
|
202
|
+
"additional_files": og.light_regular_grid_additional_files2D,
|
203
203
|
"is_loadable": og.is_light_regular_grid_loadable2D,
|
204
204
|
"load": og.load_light_regular_grid2D,
|
205
205
|
"is_saveable": og.is_light_regular_grid_saveable2D,
|
@@ -215,7 +215,7 @@ def geode_objects_dict():
|
|
215
215
|
"class": og.LightRegularGrid3D,
|
216
216
|
"input_factory": og.LightRegularGridInputFactory3D,
|
217
217
|
"output_factory": og.LightRegularGridOutputFactory3D,
|
218
|
-
"
|
218
|
+
"additional_files": og.light_regular_grid_additional_files3D,
|
219
219
|
"is_loadable": og.is_light_regular_grid_loadable3D,
|
220
220
|
"load": og.load_light_regular_grid3D,
|
221
221
|
"is_saveable": og.is_light_regular_grid_saveable3D,
|
@@ -231,7 +231,7 @@ def geode_objects_dict():
|
|
231
231
|
"class": og.PointSet2D,
|
232
232
|
"input_factory": og.PointSetInputFactory2D,
|
233
233
|
"output_factory": og.PointSetOutputFactory2D,
|
234
|
-
"
|
234
|
+
"additional_files": og.point_set_additional_files2D,
|
235
235
|
"is_loadable": og.is_point_set_loadable2D,
|
236
236
|
"load": og.load_point_set2D,
|
237
237
|
"is_saveable": og.is_point_set_saveable2D,
|
@@ -254,7 +254,7 @@ def geode_objects_dict():
|
|
254
254
|
"class": og.PointSet3D,
|
255
255
|
"input_factory": og.PointSetInputFactory3D,
|
256
256
|
"output_factory": og.PointSetOutputFactory3D,
|
257
|
-
"
|
257
|
+
"additional_files": og.point_set_additional_files3D,
|
258
258
|
"is_loadable": og.is_point_set_loadable3D,
|
259
259
|
"load": og.load_point_set3D,
|
260
260
|
"is_saveable": og.is_point_set_saveable3D,
|
@@ -277,7 +277,7 @@ def geode_objects_dict():
|
|
277
277
|
"class": og.PolygonalSurface2D,
|
278
278
|
"input_factory": og.PolygonalSurfaceInputFactory2D,
|
279
279
|
"output_factory": og.PolygonalSurfaceOutputFactory2D,
|
280
|
-
"
|
280
|
+
"additional_files": og.polygonal_surface_additional_files2D,
|
281
281
|
"is_loadable": og.is_polygonal_surface_loadable2D,
|
282
282
|
"load": og.load_polygonal_surface2D,
|
283
283
|
"is_saveable": og.is_polygonal_surface_saveable2D,
|
@@ -300,7 +300,7 @@ def geode_objects_dict():
|
|
300
300
|
"class": og.PolygonalSurface3D,
|
301
301
|
"input_factory": og.PolygonalSurfaceInputFactory3D,
|
302
302
|
"output_factory": og.PolygonalSurfaceOutputFactory3D,
|
303
|
-
"
|
303
|
+
"additional_files": og.polygonal_surface_additional_files3D,
|
304
304
|
"is_loadable": og.is_polygonal_surface_loadable3D,
|
305
305
|
"load": og.load_polygonal_surface3D,
|
306
306
|
"is_saveable": og.is_polygonal_surface_saveable3D,
|
@@ -323,7 +323,7 @@ def geode_objects_dict():
|
|
323
323
|
"class": og.PolyhedralSolid3D,
|
324
324
|
"input_factory": og.PolyhedralSolidInputFactory3D,
|
325
325
|
"output_factory": og.PolyhedralSolidOutputFactory3D,
|
326
|
-
"
|
326
|
+
"additional_files": og.polyhedral_solid_additional_files3D,
|
327
327
|
"is_loadable": og.is_polyhedral_solid_loadable3D,
|
328
328
|
"load": og.load_polyhedral_solid3D,
|
329
329
|
"is_saveable": og.is_polyhedral_solid_saveable3D,
|
@@ -346,7 +346,7 @@ def geode_objects_dict():
|
|
346
346
|
"class": og.RasterImage2D,
|
347
347
|
"input_factory": og.RasterImageInputFactory2D,
|
348
348
|
"output_factory": og.RasterImageOutputFactory2D,
|
349
|
-
"
|
349
|
+
"additional_files": og.raster_image_additional_files2D,
|
350
350
|
"is_loadable": og.is_raster_image_loadable2D,
|
351
351
|
"load": og.load_raster_image2D,
|
352
352
|
"is_saveable": og.is_raster_image_saveable2D,
|
@@ -360,7 +360,7 @@ def geode_objects_dict():
|
|
360
360
|
"class": og.RasterImage3D,
|
361
361
|
"input_factory": og.RasterImageInputFactory3D,
|
362
362
|
"output_factory": og.RasterImageOutputFactory3D,
|
363
|
-
"
|
363
|
+
"additional_files": og.raster_image_additional_files3D,
|
364
364
|
"is_loadable": og.is_raster_image_loadable3D,
|
365
365
|
"load": og.load_raster_image3D,
|
366
366
|
"is_saveable": og.is_raster_image_saveable3D,
|
@@ -374,7 +374,7 @@ def geode_objects_dict():
|
|
374
374
|
"class": og.RegularGrid2D,
|
375
375
|
"input_factory": og.RegularGridInputFactory2D,
|
376
376
|
"output_factory": og.RegularGridOutputFactory2D,
|
377
|
-
"
|
377
|
+
"additional_files": og.regular_grid_additional_files2D,
|
378
378
|
"is_loadable": og.is_regular_grid_loadable2D,
|
379
379
|
"load": og.load_regular_grid2D,
|
380
380
|
"is_saveable": og.is_regular_grid_saveable2D,
|
@@ -396,7 +396,7 @@ def geode_objects_dict():
|
|
396
396
|
"class": og.RegularGrid3D,
|
397
397
|
"input_factory": og.RegularGridInputFactory3D,
|
398
398
|
"output_factory": og.RegularGridOutputFactory3D,
|
399
|
-
"
|
399
|
+
"additional_files": og.regular_grid_additional_files3D,
|
400
400
|
"is_loadable": og.is_regular_grid_loadable3D,
|
401
401
|
"load": og.load_regular_grid3D,
|
402
402
|
"is_saveable": og.is_regular_grid_saveable3D,
|
@@ -418,7 +418,7 @@ def geode_objects_dict():
|
|
418
418
|
"class": og.Section,
|
419
419
|
"input_factory": og.SectionInputFactory,
|
420
420
|
"output_factory": og.SectionOutputFactory,
|
421
|
-
"
|
421
|
+
"additional_files": og.section_additional_files,
|
422
422
|
"is_loadable": og.is_section_loadable,
|
423
423
|
"load": og.load_section,
|
424
424
|
"is_saveable": og.is_section_saveable,
|
@@ -441,7 +441,7 @@ def geode_objects_dict():
|
|
441
441
|
"class": og_gs.StructuralModel,
|
442
442
|
"input_factory": og_gs.StructuralModelInputFactory,
|
443
443
|
"output_factory": og_gs.StructuralModelOutputFactory,
|
444
|
-
"
|
444
|
+
"additional_files": og_gs.structural_model_additional_files,
|
445
445
|
"is_loadable": og_gs.is_structural_model_loadable,
|
446
446
|
"load": og_gs.load_structural_model,
|
447
447
|
"is_saveable": og_gs.is_structural_model_saveable,
|
@@ -463,7 +463,7 @@ def geode_objects_dict():
|
|
463
463
|
"class": og.TetrahedralSolid3D,
|
464
464
|
"input_factory": og.TetrahedralSolidInputFactory3D,
|
465
465
|
"output_factory": og.TetrahedralSolidOutputFactory3D,
|
466
|
-
"
|
466
|
+
"additional_files": og.tetrahedral_solid_additional_files3D,
|
467
467
|
"is_loadable": og.is_tetrahedral_solid_loadable3D,
|
468
468
|
"load": og.load_tetrahedral_solid3D,
|
469
469
|
"is_saveable": og.is_tetrahedral_solid_saveable3D,
|
@@ -486,7 +486,7 @@ def geode_objects_dict():
|
|
486
486
|
"class": og.TriangulatedSurface2D,
|
487
487
|
"input_factory": og.TriangulatedSurfaceInputFactory2D,
|
488
488
|
"output_factory": og.TriangulatedSurfaceOutputFactory2D,
|
489
|
-
"
|
489
|
+
"additional_files": og.triangulated_surface_additional_files2D,
|
490
490
|
"is_loadable": og.is_triangulated_surface_loadable2D,
|
491
491
|
"load": og.load_triangulated_surface2D,
|
492
492
|
"is_saveable": og.is_triangulated_surface_saveable2D,
|
@@ -509,7 +509,7 @@ def geode_objects_dict():
|
|
509
509
|
"class": og.TriangulatedSurface3D,
|
510
510
|
"input_factory": og.TriangulatedSurfaceInputFactory3D,
|
511
511
|
"output_factory": og.TriangulatedSurfaceOutputFactory3D,
|
512
|
-
"
|
512
|
+
"additional_files": og.triangulated_surface_additional_files3D,
|
513
513
|
"is_loadable": og.is_triangulated_surface_loadable3D,
|
514
514
|
"load": og.load_triangulated_surface3D,
|
515
515
|
"is_saveable": og.is_triangulated_surface_saveable3D,
|
@@ -532,7 +532,7 @@ def geode_objects_dict():
|
|
532
532
|
"class": og.VertexSet,
|
533
533
|
"input_factory": og.VertexSetInputFactory,
|
534
534
|
"output_factory": og.VertexSetOutputFactory,
|
535
|
-
"
|
535
|
+
"additional_files": og.vertex_set_additional_files,
|
536
536
|
"is_loadable": og.is_vertex_set_loadable,
|
537
537
|
"load": og.load_vertex_set,
|
538
538
|
"is_saveable": og.is_vertex_set_saveable,
|
@@ -121,19 +121,27 @@ with open(
|
|
121
121
|
def missing_files():
|
122
122
|
utils_functions.validate_request(flask.request, missing_files_json)
|
123
123
|
file_path = geode_functions.upload_file_path(flask.request.json["filename"])
|
124
|
-
|
124
|
+
|
125
|
+
additional_files = geode_functions.additional_files(
|
125
126
|
flask.request.json["input_geode_object"],
|
126
127
|
file_path,
|
127
128
|
)
|
128
|
-
has_missing_files = missing_files.has_missing_files()
|
129
129
|
|
130
|
-
|
131
|
-
|
132
|
-
mandatory_files.
|
130
|
+
has_missing_files = any(
|
131
|
+
file.is_missing
|
132
|
+
for file in additional_files.mandatory_files + additional_files.optional_files
|
133
|
+
)
|
133
134
|
|
134
|
-
|
135
|
-
|
136
|
-
additional_files.
|
135
|
+
mandatory_files = [
|
136
|
+
os.path.basename(file.filename)
|
137
|
+
for file in additional_files.mandatory_files
|
138
|
+
if file.is_missing
|
139
|
+
]
|
140
|
+
additional_files = [
|
141
|
+
os.path.basename(file.filename)
|
142
|
+
for file in additional_files.optional_files
|
143
|
+
if file.is_missing
|
144
|
+
]
|
137
145
|
|
138
146
|
return flask.make_response(
|
139
147
|
{
|
@@ -239,12 +247,10 @@ with open(
|
|
239
247
|
)
|
240
248
|
def save_viewable_file():
|
241
249
|
utils_functions.validate_request(flask.request, save_viewable_file_json)
|
242
|
-
|
243
|
-
file_path = geode_functions.upload_file_path(flask.request.json["filename"])
|
244
|
-
data = geode_functions.load(flask.request.json["input_geode_object"], file_path)
|
245
250
|
return flask.make_response(
|
246
|
-
utils_functions.
|
247
|
-
flask.request.json["input_geode_object"],
|
251
|
+
utils_functions.generate_native_viewable_and_light_viewable_from_file(
|
252
|
+
geode_object=flask.request.json["input_geode_object"],
|
253
|
+
input_filename=flask.request.json["filename"],
|
248
254
|
),
|
249
255
|
200,
|
250
256
|
)
|
@@ -267,7 +273,7 @@ def create_point():
|
|
267
273
|
builder.create_point(opengeode.Point3D([x, y, z]))
|
268
274
|
builder.set_name(title)
|
269
275
|
return flask.make_response(
|
270
|
-
utils_functions.
|
276
|
+
utils_functions.generate_native_viewable_and_light_viewable_from_object(
|
271
277
|
"PointSet3D", PointSet3D
|
272
278
|
),
|
273
279
|
200,
|
@@ -9,6 +9,8 @@ import zipfile
|
|
9
9
|
import flask
|
10
10
|
import fastjsonschema
|
11
11
|
import importlib.metadata as metadata
|
12
|
+
import shutil
|
13
|
+
import werkzeug
|
12
14
|
|
13
15
|
# Local application imports
|
14
16
|
from . import geode_functions
|
@@ -143,13 +145,20 @@ def handle_exception(e):
|
|
143
145
|
return response
|
144
146
|
|
145
147
|
|
146
|
-
def
|
148
|
+
def create_unique_data_folder() -> tuple[str, str]:
|
149
|
+
base_data_folder = flask.current_app.config["DATA_FOLDER_PATH"]
|
147
150
|
generated_id = str(uuid.uuid4()).replace("-", "")
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
object_type = geode_functions.get_object_type(geode_object)
|
151
|
+
data_path = os.path.join(base_data_folder, generated_id)
|
152
|
+
os.makedirs(data_path, exist_ok=True)
|
153
|
+
return generated_id, data_path
|
152
154
|
|
155
|
+
|
156
|
+
def save_all_viewables_and_return_info(
|
157
|
+
geode_object,
|
158
|
+
data, generated_id,
|
159
|
+
data_path,
|
160
|
+
additional_files=None
|
161
|
+
):
|
153
162
|
saved_native_file_path = geode_functions.save(
|
154
163
|
geode_object,
|
155
164
|
data,
|
@@ -159,20 +168,60 @@ def generate_native_viewable_and_light_viewable(geode_object, data):
|
|
159
168
|
saved_viewable_file_path = geode_functions.save_viewable(
|
160
169
|
geode_object, data, data_path, "viewable"
|
161
170
|
)
|
162
|
-
viewable_file_name = os.path.basename(saved_viewable_file_path)
|
163
171
|
saved_light_viewable_file_path = geode_functions.save_light_viewable(
|
164
172
|
geode_object, data, data_path, "light_viewable"
|
165
173
|
)
|
166
|
-
|
167
|
-
|
168
|
-
f.close()
|
174
|
+
with open(saved_light_viewable_file_path, "rb") as f:
|
175
|
+
binary_light_viewable = f.read()
|
169
176
|
|
170
177
|
return {
|
171
|
-
"name": name,
|
178
|
+
"name": data.name(),
|
172
179
|
"native_file_name": os.path.basename(saved_native_file_path[0]),
|
173
|
-
"viewable_file_name":
|
180
|
+
"viewable_file_name": os.path.basename(saved_viewable_file_path),
|
174
181
|
"id": generated_id,
|
175
|
-
"object_type":
|
176
|
-
"binary_light_viewable":
|
182
|
+
"object_type": geode_functions.get_object_type(geode_object),
|
183
|
+
"binary_light_viewable": binary_light_viewable.decode("utf-8"),
|
177
184
|
"geode_object": geode_object,
|
185
|
+
"input_files": additional_files or [],
|
178
186
|
}
|
187
|
+
|
188
|
+
def generate_native_viewable_and_light_viewable_from_object(
|
189
|
+
geode_object,
|
190
|
+
data
|
191
|
+
):
|
192
|
+
generated_id, data_path = create_unique_data_folder()
|
193
|
+
return save_all_viewables_and_return_info(geode_object, data, generated_id, data_path)
|
194
|
+
|
195
|
+
|
196
|
+
def generate_native_viewable_and_light_viewable_from_file(
|
197
|
+
geode_object,
|
198
|
+
input_filename
|
199
|
+
):
|
200
|
+
generated_id, data_path = create_unique_data_folder()
|
201
|
+
|
202
|
+
full_input_filename = geode_functions.upload_file_path(input_filename)
|
203
|
+
copied_full_path = os.path.join(data_path, werkzeug.utils.secure_filename(input_filename))
|
204
|
+
shutil.copy2(full_input_filename, copied_full_path)
|
205
|
+
|
206
|
+
additional_files_copied = []
|
207
|
+
additional = geode_functions.additional_files(geode_object, full_input_filename)
|
208
|
+
for additional_file in additional.mandatory_files + additional.optional_files:
|
209
|
+
if additional_file.is_missing:
|
210
|
+
continue
|
211
|
+
source_path = os.path.join(os.path.dirname(full_input_filename), additional_file.filename)
|
212
|
+
if not os.path.exists(source_path):
|
213
|
+
continue
|
214
|
+
dest_path = os.path.join(data_path, additional_file.filename)
|
215
|
+
os.makedirs(os.path.dirname(dest_path), exist_ok=True)
|
216
|
+
shutil.copy2(source_path, dest_path)
|
217
|
+
additional_files_copied.append(additional_file.filename)
|
218
|
+
|
219
|
+
data = geode_functions.load_data(geode_object, generated_id, input_filename)
|
220
|
+
|
221
|
+
return save_all_viewables_and_return_info(
|
222
|
+
geode_object,
|
223
|
+
data,
|
224
|
+
generated_id,
|
225
|
+
data_path,
|
226
|
+
additional_files=additional_files_copied,
|
227
|
+
)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: OpenGeodeWeb-Back
|
3
|
-
Version: 5.9.
|
3
|
+
Version: 5.9.0rc2
|
4
4
|
Summary: OpenGeodeWeb-Back is an open source framework that proposes handy python functions and wrappers for the OpenGeode ecosystem
|
5
5
|
Author-email: Geode-solutions <team-web@geode-solutions.com>
|
6
6
|
Project-URL: Homepage, https://github.com/Geode-solutions/OpenGeodeWeb-Back
|
@@ -11,32 +11,28 @@ Classifier: Operating System :: OS Independent
|
|
11
11
|
Requires-Python: <3.13,>=3.9
|
12
12
|
Description-Content-Type: text/markdown
|
13
13
|
License-File: LICENSE
|
14
|
-
Requires-Dist: asgiref==3.
|
15
|
-
Requires-Dist: attrs==25.3.0
|
14
|
+
Requires-Dist: asgiref==3.9.1
|
16
15
|
Requires-Dist: blinker==1.9.0
|
17
16
|
Requires-Dist: click==8.2.1
|
18
17
|
Requires-Dist: fastjsonschema==2.21.1
|
19
18
|
Requires-Dist: flask[async]==3.1.1
|
20
19
|
Requires-Dist: flask-cors==6.0.1
|
21
|
-
Requires-Dist: geode-background==9.
|
22
|
-
Requires-Dist: geode-common==33.
|
23
|
-
Requires-Dist: geode-conversion==6.
|
24
|
-
Requires-Dist: geode-explicit==6.
|
25
|
-
Requires-Dist: geode-implicit==
|
26
|
-
Requires-Dist: geode-numerics==6.
|
27
|
-
Requires-Dist: geode-simplex==9.
|
28
|
-
Requires-Dist: geode-viewables==3.
|
20
|
+
Requires-Dist: geode-background==9.4.0
|
21
|
+
Requires-Dist: geode-common==33.9.0
|
22
|
+
Requires-Dist: geode-conversion==6.4.0
|
23
|
+
Requires-Dist: geode-explicit==6.3.0
|
24
|
+
Requires-Dist: geode-implicit==4.1.1
|
25
|
+
Requires-Dist: geode-numerics==6.3.0
|
26
|
+
Requires-Dist: geode-simplex==9.6.0
|
27
|
+
Requires-Dist: geode-viewables==3.2.0
|
29
28
|
Requires-Dist: itsdangerous==2.2.0
|
30
29
|
Requires-Dist: jinja2==3.1.6
|
31
30
|
Requires-Dist: markupsafe==3.0.2
|
32
|
-
Requires-Dist: opengeode-core==15.
|
33
|
-
Requires-Dist: opengeode-geosciences==9.
|
34
|
-
Requires-Dist: opengeode-geosciencesio==5.
|
35
|
-
Requires-Dist: opengeode-inspector==6.
|
36
|
-
Requires-Dist: opengeode-io==7.
|
37
|
-
Requires-Dist: referencing==0.36.2
|
38
|
-
Requires-Dist: rpds-py==0.25.1
|
39
|
-
Requires-Dist: typing-extensions==4.14.0
|
31
|
+
Requires-Dist: opengeode-core==15.24.1
|
32
|
+
Requires-Dist: opengeode-geosciences==9.2.1
|
33
|
+
Requires-Dist: opengeode-geosciencesio==5.7.1
|
34
|
+
Requires-Dist: opengeode-inspector==6.7.0
|
35
|
+
Requires-Dist: opengeode-io==7.3.1
|
40
36
|
Requires-Dist: werkzeug==3.1.3
|
41
37
|
Dynamic: license-file
|
42
38
|
|
@@ -1,10 +1,10 @@
|
|
1
1
|
opengeodeweb_back/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
2
|
opengeodeweb_back/app_config.py,sha256=gJfYxDJOa_PYLqjqgdXacp3W3F109uujE9LGPvzHOkc,728
|
3
|
-
opengeodeweb_back/geode_functions.py,sha256=
|
4
|
-
opengeodeweb_back/geode_objects.py,sha256=
|
3
|
+
opengeodeweb_back/geode_functions.py,sha256=2lgL0FL8G5ZdJa-S_iUNWGlegHBJEDtU67Tuj5gtJ1c,9812
|
4
|
+
opengeodeweb_back/geode_objects.py,sha256=GrC1NltKKSCr0QSgcMy2ES8SLW_RkndCdrokeBOymrA,25995
|
5
5
|
opengeodeweb_back/test_utils.py,sha256=18AbRW9-tfKkPcmRGilTTHXI7S3armYyV7Vdy5UvUKM,794
|
6
|
-
opengeodeweb_back/utils_functions.py,sha256=
|
7
|
-
opengeodeweb_back/routes/blueprint_routes.py,sha256=
|
6
|
+
opengeodeweb_back/utils_functions.py,sha256=Q3NspzZJ50AvSQALgwFen8RJwHllQOGmNrhsSk_yVJU,7129
|
7
|
+
opengeodeweb_back/routes/blueprint_routes.py,sha256=3fxMR9fs0BqnOiYhKFacGdxWm7JFLz5i5PvUqYgB5z4,11308
|
8
8
|
opengeodeweb_back/routes/models/blueprint_models.py,sha256=PAyHSKjsvVm5gGfjUyWAnODmE0BJMsIWc1AWl0F3bO0,1955
|
9
9
|
opengeodeweb_back/routes/models/schemas/mesh_components.json,sha256=3OQvI4pUCe77WGC46tEr37rEWigQ6n2nsfGUTZRY074,419
|
10
10
|
opengeodeweb_back/routes/models/schemas/vtm_component_indices.json,sha256=0XILVxhAxi0RhQFDZZoUeGcAnBMroWz3kNJS7-6_dKQ,239
|
@@ -22,8 +22,8 @@ opengeodeweb_back/routes/schemas/save_viewable_file.json,sha256=pvvEdaC7bNASPMrl
|
|
22
22
|
opengeodeweb_back/routes/schemas/texture_coordinates.json,sha256=oW84Vh34KfleK935fmMXnqJXy-vaLDd7g87O_PtSzfY,429
|
23
23
|
opengeodeweb_back/routes/schemas/upload_file.json,sha256=LJ3U3L5ApKuQDVFIpVT_y2alq4HW_suTvZ3HUucNbhg,219
|
24
24
|
opengeodeweb_back/routes/schemas/vertex_attribute_names.json,sha256=bmXG0pzVHMUTZY_0iu6ruX7eMUVk8wr2H1o4eEtBlg0,432
|
25
|
-
opengeodeweb_back-5.9.
|
26
|
-
opengeodeweb_back-5.9.
|
27
|
-
opengeodeweb_back-5.9.
|
28
|
-
opengeodeweb_back-5.9.
|
29
|
-
opengeodeweb_back-5.9.
|
25
|
+
opengeodeweb_back-5.9.0rc2.dist-info/licenses/LICENSE,sha256=LoTB-aqQvzTGxoTRXNnhNV0LKiqdk2bQv6MB34l8zkI,1079
|
26
|
+
opengeodeweb_back-5.9.0rc2.dist-info/METADATA,sha256=G0-jcTd93p-b_uODLt2l8jLLsZBoBr2YLUBynqhjwIg,2900
|
27
|
+
opengeodeweb_back-5.9.0rc2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
28
|
+
opengeodeweb_back-5.9.0rc2.dist-info/top_level.txt,sha256=tN1FZeLIVBrdja2-pbmhg5-tK-JILmmT9OeIBnhlUrQ,18
|
29
|
+
opengeodeweb_back-5.9.0rc2.dist-info/RECORD,,
|
File without changes
|
{opengeodeweb_back-5.9.0rc1.dist-info → opengeodeweb_back-5.9.0rc2.dist-info}/licenses/LICENSE
RENAMED
File without changes
|
File without changes
|