plexus-python-common 1.0.31__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.
- plexus/common/__init__.py +6 -0
- plexus/common/carto/OSMFile.py +259 -0
- plexus/common/carto/OSMNode.py +25 -0
- plexus/common/carto/OSMTags.py +101 -0
- plexus/common/carto/OSMWay.py +24 -0
- plexus/common/carto/__init__.py +11 -0
- plexus/common/pose.py +107 -0
- plexus/common/proj.py +305 -0
- plexus/common/utils/__init__.py +0 -0
- plexus/common/utils/apiutils.py +31 -0
- plexus/common/utils/bagutils.py +215 -0
- plexus/common/utils/config.py +61 -0
- plexus/common/utils/datautils.py +200 -0
- plexus/common/utils/jsonutils.py +92 -0
- plexus/common/utils/ormutils.py +1428 -0
- plexus/common/utils/s3utils.py +799 -0
- plexus/common/utils/shutils.py +234 -0
- plexus/common/utils/sqlutils.py +9 -0
- plexus/common/utils/strutils.py +382 -0
- plexus/common/utils/testutils.py +49 -0
- plexus_python_common-1.0.31.dist-info/METADATA +38 -0
- plexus_python_common-1.0.31.dist-info/RECORD +24 -0
- plexus_python_common-1.0.31.dist-info/WHEEL +5 -0
- plexus_python_common-1.0.31.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: plexus-python-common
|
|
3
|
+
Version: 1.0.31
|
|
4
|
+
Classifier: Programming Language :: Python :: 3
|
|
5
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
6
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
7
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
8
|
+
Requires-Python: <3.15,>=3.12
|
|
9
|
+
Requires-Dist: aiobotocore<2.27,>=2.26
|
|
10
|
+
Requires-Dist: boto3<1.42,>=1.41
|
|
11
|
+
Requires-Dist: boto3-stubs<1.42,>=1.41
|
|
12
|
+
Requires-Dist: cloudpathlib>=0.21
|
|
13
|
+
Requires-Dist: fsspec>=2025.10
|
|
14
|
+
Requires-Dist: lxml>=6.0
|
|
15
|
+
Requires-Dist: numpy>=2.3
|
|
16
|
+
Requires-Dist: pydantic>=2.8
|
|
17
|
+
Requires-Dist: pygeodesy>=24.10
|
|
18
|
+
Requires-Dist: pyparsing>=3.2
|
|
19
|
+
Requires-Dist: pyproj>=3.6
|
|
20
|
+
Requires-Dist: pyquaternion>=0.9
|
|
21
|
+
Requires-Dist: sqlalchemy>=2.0
|
|
22
|
+
Requires-Dist: s3fs>=2025.10
|
|
23
|
+
Requires-Dist: rich>=13.9
|
|
24
|
+
Requires-Dist: textcase>=0.4
|
|
25
|
+
Requires-Dist: ujson>=5.9
|
|
26
|
+
Requires-Dist: iker-python-common[all]>=1.0
|
|
27
|
+
Provides-Extra: all
|
|
28
|
+
Requires-Dist: plexus-python-common[api]; extra == "all"
|
|
29
|
+
Provides-Extra: api
|
|
30
|
+
Requires-Dist: fastapi>=0.119.0; extra == "api"
|
|
31
|
+
Requires-Dist: sqlmodel>=0.0.25; extra == "api"
|
|
32
|
+
Provides-Extra: test
|
|
33
|
+
Requires-Dist: ddt>=1.7; extra == "test"
|
|
34
|
+
Requires-Dist: moto[s3,server]>=5.1; extra == "test"
|
|
35
|
+
Requires-Dist: pytest-cov>=5.0; extra == "test"
|
|
36
|
+
Requires-Dist: pytest-order>=1.3; extra == "test"
|
|
37
|
+
Requires-Dist: pytest-postgresql>=6.1; extra == "test"
|
|
38
|
+
Requires-Dist: pytest>=8.3; extra == "test"
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
plexus/common/__init__.py,sha256=uWSQ4w3n7-zO3xJA1MTde4zbyZ73W8eVQ2EcoDzHwqc,177
|
|
2
|
+
plexus/common/pose.py,sha256=abF-kOZIApFoTaqBGWDAQne75y3dv7RpFmHiNO-drIM,2850
|
|
3
|
+
plexus/common/proj.py,sha256=qs3UFLmZaDyxentQgK7suSqZ8_KXYSvvLQhuKzDBJlQ,8742
|
|
4
|
+
plexus/common/carto/OSMFile.py,sha256=yKG0ImkUNOrOs6oiEANDKZ6KaQCTEaPSolYMVLACVB0,8136
|
|
5
|
+
plexus/common/carto/OSMNode.py,sha256=XJkp-tD945tFz3MWO5v3IdGfsjZy3YZE_yaBNc4dTdM,593
|
|
6
|
+
plexus/common/carto/OSMTags.py,sha256=wGtdfl1gzuXMk75xU2cyeF6hwFdKADxq77fah7vrFwg,3450
|
|
7
|
+
plexus/common/carto/OSMWay.py,sha256=zqSUzn_evoYwG51ZbSOCBbzHKQ2fFIDcaToYE9SVKxE,562
|
|
8
|
+
plexus/common/carto/__init__.py,sha256=rmUEoSB4Rq3xmFGD16Y7zkjWpzbkxJgZEXt2Vnqxhws,264
|
|
9
|
+
plexus/common/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
|
+
plexus/common/utils/apiutils.py,sha256=8H1wuahkPseOjZHQcrT70EUUDTJ-j7c9lw8kx8SoG0Y,1000
|
|
11
|
+
plexus/common/utils/bagutils.py,sha256=8HOaPDHlTk5rTTs6r57m41sEartbZvRwoCvZSsL0PCY,7505
|
|
12
|
+
plexus/common/utils/config.py,sha256=QKB07iUl_oFOQsx_FfOdNrz2ezi9gSVmwU8NmDu7gWs,2333
|
|
13
|
+
plexus/common/utils/datautils.py,sha256=QrdV4NGYCS5WaN_-24SuZc1lfK4GNWEB2TWRukpmdjo,8179
|
|
14
|
+
plexus/common/utils/jsonutils.py,sha256=IR7A_y4DmzW844JtMezhxfa43Ne5QLssYYVA_xX8z1Y,3235
|
|
15
|
+
plexus/common/utils/ormutils.py,sha256=bUTyWMQn3cSqJAbWpGud6e0JUvvKdYGL8elDOxWkE2M,51670
|
|
16
|
+
plexus/common/utils/s3utils.py,sha256=uzVvQ_BM1hiMWibbuTvfZY4yN2TPBTevDxy02qP8XWs,31009
|
|
17
|
+
plexus/common/utils/shutils.py,sha256=hGJqSLj08tuOeZ7WeC5d4BtjnPI732BuntVQBQsqOaI,9581
|
|
18
|
+
plexus/common/utils/sqlutils.py,sha256=D6kTBjhO5YlNRt3uFlPt6z3uH61m9ajEzPYmsI6NoFc,231
|
|
19
|
+
plexus/common/utils/strutils.py,sha256=NJEHIEfZ51lX6W7VMdHOJLdJG3d_CZgaTLqdZ2ijDno,15066
|
|
20
|
+
plexus/common/utils/testutils.py,sha256=vxje7yUP_P6FUAtho9G6rnGiEUkBoAcvzfZvj9_WsCw,1939
|
|
21
|
+
plexus_python_common-1.0.31.dist-info/METADATA,sha256=qdYqbiQNIhzXIDOKYJ7oB-bDIXCpKE1oMUnYFKxTaZ0,1364
|
|
22
|
+
plexus_python_common-1.0.31.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
23
|
+
plexus_python_common-1.0.31.dist-info/top_level.txt,sha256=ug_g7CVwaMQuas5UzAXbHUrQvKGCn8ezc6ZNvvRlJOE,7
|
|
24
|
+
plexus_python_common-1.0.31.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
plexus
|