geovisio 2.6.0__py3-none-any.whl → 2.7.0__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.
- geovisio/__init__.py +36 -7
- geovisio/admin_cli/db.py +1 -4
- geovisio/config_app.py +40 -1
- geovisio/db_migrations.py +24 -3
- geovisio/templates/main.html +13 -13
- geovisio/templates/viewer.html +3 -3
- geovisio/translations/de/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/de/LC_MESSAGES/messages.po +667 -0
- geovisio/translations/en/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/en/LC_MESSAGES/messages.po +730 -0
- geovisio/translations/es/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/es/LC_MESSAGES/messages.po +778 -0
- geovisio/translations/fi/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/fi/LC_MESSAGES/messages.po +589 -0
- geovisio/translations/fr/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/fr/LC_MESSAGES/messages.po +814 -0
- geovisio/translations/ko/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/ko/LC_MESSAGES/messages.po +685 -0
- geovisio/translations/messages.pot +686 -0
- geovisio/translations/nl/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/nl/LC_MESSAGES/messages.po +594 -0
- geovisio/utils/__init__.py +1 -1
- geovisio/utils/auth.py +50 -11
- geovisio/utils/db.py +65 -0
- geovisio/utils/excluded_areas.py +83 -0
- geovisio/utils/extent.py +30 -0
- geovisio/utils/fields.py +1 -1
- geovisio/utils/filesystems.py +0 -1
- geovisio/utils/link.py +14 -0
- geovisio/utils/params.py +20 -0
- geovisio/utils/pictures.py +92 -68
- geovisio/utils/reports.py +171 -0
- geovisio/utils/sequences.py +264 -126
- geovisio/utils/tokens.py +37 -42
- geovisio/utils/upload_set.py +654 -0
- geovisio/web/auth.py +37 -37
- geovisio/web/collections.py +286 -302
- geovisio/web/configuration.py +14 -0
- geovisio/web/docs.py +241 -14
- geovisio/web/excluded_areas.py +377 -0
- geovisio/web/items.py +156 -108
- geovisio/web/map.py +20 -20
- geovisio/web/params.py +69 -26
- geovisio/web/pictures.py +14 -31
- geovisio/web/reports.py +399 -0
- geovisio/web/rss.py +13 -7
- geovisio/web/stac.py +129 -134
- geovisio/web/tokens.py +98 -109
- geovisio/web/upload_set.py +768 -0
- geovisio/web/users.py +100 -73
- geovisio/web/utils.py +28 -9
- geovisio/workers/runner_pictures.py +252 -204
- {geovisio-2.6.0.dist-info → geovisio-2.7.0.dist-info}/METADATA +16 -13
- geovisio-2.7.0.dist-info/RECORD +66 -0
- geovisio-2.6.0.dist-info/RECORD +0 -41
- {geovisio-2.6.0.dist-info → geovisio-2.7.0.dist-info}/LICENSE +0 -0
- {geovisio-2.6.0.dist-info → geovisio-2.7.0.dist-info}/WHEEL +0 -0
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: geovisio
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.7.0
|
|
4
4
|
Summary: GeoVisio API - Main
|
|
5
5
|
Author-email: Adrien PAVIE <panieravide@riseup.net>, Antoine Desbordes <antoine.desbordes@gmail.com>
|
|
6
|
-
Requires-Python: >=3.
|
|
6
|
+
Requires-Python: >=3.10
|
|
7
7
|
Description-Content-Type: text/markdown
|
|
8
8
|
Classifier: License :: OSI Approved :: MIT License
|
|
9
9
|
Requires-Dist: Flask ~= 2.3
|
|
@@ -20,43 +20,46 @@ Requires-Dist: psycopg-binary ~= 3.1
|
|
|
20
20
|
Requires-Dist: python-dotenv ~= 0.21
|
|
21
21
|
Requires-Dist: authlib ~= 1.2
|
|
22
22
|
Requires-Dist: Flask-Executor ~= 1.0
|
|
23
|
-
Requires-Dist: geopic-tag-reader[write-exif]
|
|
23
|
+
Requires-Dist: geopic-tag-reader[write-exif] == 1.3.1
|
|
24
24
|
Requires-Dist: rfeed ~= 1.1.1
|
|
25
25
|
Requires-Dist: sentry-sdk[flask] ~= 1.31
|
|
26
|
-
Requires-Dist: pygeofilter[backend-native] ~= 0.2.
|
|
26
|
+
Requires-Dist: pygeofilter[backend-native] ~= 0.2.4
|
|
27
27
|
Requires-Dist: python-dateutil ~= 2.8.2
|
|
28
28
|
Requires-Dist: tzdata ~= 2024.1
|
|
29
29
|
Requires-Dist: croniter ~= 2.0.5
|
|
30
|
-
Requires-Dist:
|
|
31
|
-
Requires-Dist:
|
|
32
|
-
Requires-Dist:
|
|
30
|
+
Requires-Dist: pydantic ~= 2.7
|
|
31
|
+
Requires-Dist: pydantic-extra-types ~= 2.7
|
|
32
|
+
Requires-Dist: flask-babel ~= 4.0.0
|
|
33
|
+
Requires-Dist: geojson-pydantic ~= 1.1.0
|
|
33
34
|
Requires-Dist: flit ~= 3.9.0 ; extra == "build"
|
|
34
35
|
Requires-Dist: coverage ~= 6.5 ; extra == "dev"
|
|
35
36
|
Requires-Dist: protobuf ~= 4.21 ; extra == "dev"
|
|
36
37
|
Requires-Dist: mapbox-vector-tile ~= 2.0 ; extra == "dev"
|
|
37
38
|
Requires-Dist: pystac ~= 1.9 ; extra == "dev"
|
|
38
|
-
Requires-Dist: pytest ~=
|
|
39
|
+
Requires-Dist: pytest ~= 8.3 ; extra == "dev"
|
|
39
40
|
Requires-Dist: pytest-datafiles ~= 2.0 ; extra == "dev"
|
|
40
|
-
Requires-Dist: pyexiv2 ~= 2.
|
|
41
|
+
Requires-Dist: pyexiv2 ~= 2.15 ; extra == "dev"
|
|
41
42
|
Requires-Dist: testcontainers ~= 4.1 ; extra == "dev"
|
|
42
43
|
Requires-Dist: requests-mock ~= 1.11 ; extra == "dev"
|
|
43
44
|
Requires-Dist: black ~= 24.1 ; extra == "dev"
|
|
44
45
|
Requires-Dist: pre-commit ~= 3.3 ; extra == "dev"
|
|
45
46
|
Requires-Dist: pyyaml ~= 6.0 ; extra == "dev"
|
|
47
|
+
Requires-Dist: openapi-spec-validator ~= 0.7 ; extra == "dev"
|
|
48
|
+
Requires-Dist: stac-api-validator ~= 0.6.3 ; extra == "dev"
|
|
46
49
|
Requires-Dist: mkdocs-material ~= 9.5.21 ; extra == "docs"
|
|
50
|
+
Requires-Dist: mkdocs-swagger-ui-tag ~= 0.6.10 ; extra == "docs"
|
|
47
51
|
Project-URL: Home, https://gitlab.com/panoramax/server/api
|
|
48
52
|
Project-URL: Source Code, https://gitlab.com/panoramax/server/api
|
|
49
|
-
Provides-Extra: api-conformance
|
|
50
53
|
Provides-Extra: build
|
|
51
54
|
Provides-Extra: dev
|
|
52
55
|
Provides-Extra: docs
|
|
53
56
|
|
|
54
57
|
#  Panoramax
|
|
55
58
|
|
|
56
|
-
__Panoramax__ is a digital resource for sharing and
|
|
59
|
+
__Panoramax__ is a digital resource for sharing and using 📍📷 field photos. Anyone can take photographs of places visible from the public streets and contribute them to the Panoramax database. This data is then freely accessible and reusable by all. More information available at [gitlab.com/panoramax](https://gitlab.com/panoramax) and [panoramax.fr](https://panoramax.fr/).
|
|
57
60
|
|
|
58
61
|
|
|
59
|
-
# 🌐
|
|
62
|
+
# 🌐 Panoramax API
|
|
60
63
|
|
|
61
64
|
This repository only contains __the backend and web API__ of a Panoramax instance.
|
|
62
65
|
|
|
@@ -74,7 +77,7 @@ This repository only contains __the backend and web API__ of a Panoramax instanc
|
|
|
74
77
|
|
|
75
78
|
## Install & run
|
|
76
79
|
|
|
77
|
-
Our [documentation](https://gitlab.com/panoramax/server/api/-/tree/develop/docs) will help you install, configure and run a
|
|
80
|
+
Our [documentation](https://gitlab.com/panoramax/server/api/-/tree/develop/docs) will help you install, configure and run a Panoramax instance.
|
|
78
81
|
|
|
79
82
|
If at some point you're lost or need help, you can contact us through [issues](https://gitlab.com/panoramax/server/api/-/issues) or by [email](mailto:panieravide@riseup.net).
|
|
80
83
|
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
geovisio/__init__.py,sha256=uFnmcVLE7WveiJ0LsK7qNN7WiVXldYlKLIG1J6RnD9M,6937
|
|
2
|
+
geovisio/config_app.py,sha256=TiG90GE4JXr0Le4a5bRMqTP02TBivb4deWmPLLd94Fc,10349
|
|
3
|
+
geovisio/db_migrations.py,sha256=9lHkyG_RiCWzrFkfwhkslScUsbCZScN-KVhkXrtnPDo,4560
|
|
4
|
+
geovisio/errors.py,sha256=uTn-kI7SUl5OPB8Mv3Qqu7Ucp5JvcqWPQFfgLCqsEpI,1376
|
|
5
|
+
geovisio/admin_cli/__init__.py,sha256=8xlb3WN1DtEVurW9B0VuOFtI33oRV5TvxV6hOkUUpM0,3173
|
|
6
|
+
geovisio/admin_cli/cleanup.py,sha256=SevtztDBN9844wT_6G_DubTNoK2b3N4n53LFgAPRxcI,4882
|
|
7
|
+
geovisio/admin_cli/db.py,sha256=mJ-cGuOAAsg-ovbP9L1kyL4xE0C4bYRuozzqQkaFyw8,897
|
|
8
|
+
geovisio/admin_cli/default_account_tokens.py,sha256=W-v5uPjCBvAujjAUx1HrfgjPj-tEyncb-EUMLpsWc9w,469
|
|
9
|
+
geovisio/admin_cli/reorder_sequences.py,sha256=LKKzdO2w4N-cQmi6rqKHKYG5YGzPxYRTbnfcPKakuYM,2826
|
|
10
|
+
geovisio/admin_cli/sequence_heading.py,sha256=BEPuRfCDXXpqSSzK2ysrxHf0OD4THzrMI_YK2uXQlGk,633
|
|
11
|
+
geovisio/templates/main.html,sha256=7s4eKMfWKCkpspRqeCx-G_euEq932ac-PLP5uBYGa48,2949
|
|
12
|
+
geovisio/templates/viewer.html,sha256=XIHlaKV_a_iOxmjcTdUdToVjt5nB2NkZlMhQLoDfTAg,865
|
|
13
|
+
geovisio/translations/messages.pot,sha256=-m51uG-Jr3h8yyhh--edb-nbCaB0rwlnbZC3Pf5nLV0,17416
|
|
14
|
+
geovisio/translations/de/LC_MESSAGES/messages.mo,sha256=4Zx9ZOcyP1g8fpm1GyVaWEX7DfWMdc0fzV3NK-Y7Lsw,16370
|
|
15
|
+
geovisio/translations/de/LC_MESSAGES/messages.po,sha256=1ixFHS45NsTbbQrn49oxWOlSQpETZ3bygKK25DKVdto,22448
|
|
16
|
+
geovisio/translations/en/LC_MESSAGES/messages.mo,sha256=Kbh0Y4BPspwssVhvLBZ7i6R1CEoipYbEH2fokM3P3qY,17721
|
|
17
|
+
geovisio/translations/en/LC_MESSAGES/messages.po,sha256=K2oQvqgISp6pXzyJc-xihOzfHSbfjwsYowEYdfFpgZc,24881
|
|
18
|
+
geovisio/translations/es/LC_MESSAGES/messages.mo,sha256=R1uvDSt0uKMV0gVr0foc_0iiYBLc1ls2ryBlWHVZ_DQ,19111
|
|
19
|
+
geovisio/translations/es/LC_MESSAGES/messages.po,sha256=NoyuXR_2iugWHLTcoUZSNLUSCpt8jMyl0FUD4p7N99w,26775
|
|
20
|
+
geovisio/translations/fi/LC_MESSAGES/messages.mo,sha256=Z52s0OukqMwi58FpfLnBd8ED429LPSGG4shba4HPFgY,626
|
|
21
|
+
geovisio/translations/fi/LC_MESSAGES/messages.po,sha256=UFT4YCfEazxLij8Ovk2vZqx55e2Yctbf_3xM5KDrXhw,14685
|
|
22
|
+
geovisio/translations/fr/LC_MESSAGES/messages.mo,sha256=wnsuokhgoduq-Vvmhc8HvxIe5_wjJPVsrms3hHnSfPE,20613
|
|
23
|
+
geovisio/translations/fr/LC_MESSAGES/messages.po,sha256=FqwR-VEHrN7_YzSYqIbvoEiV9YEjfrwQI53zgPanSNw,28020
|
|
24
|
+
geovisio/translations/ko/LC_MESSAGES/messages.mo,sha256=cqo1DInz1VObD4Cj_2Tqmm5dGoNQfpssRiyv8BaxxF4,426
|
|
25
|
+
geovisio/translations/ko/LC_MESSAGES/messages.po,sha256=uq19EZaeRB-obmE1hYnckA8T12JuuU3nXYyKaMR4tiU,17405
|
|
26
|
+
geovisio/translations/nl/LC_MESSAGES/messages.mo,sha256=RsL6Km4aFAS7lGLqP7Tqx2T-0Mlwqybl4ROCkpi7h68,433
|
|
27
|
+
geovisio/translations/nl/LC_MESSAGES/messages.po,sha256=R5c0GKQ2RgezM7wkYwymaSXZ68dhE30_c-WpjlV_Fxk,14613
|
|
28
|
+
geovisio/utils/__init__.py,sha256=g4SWVoV73cSXjf5-5D9-HmyB5xKmHSuxxOGWnx7W3V0,71
|
|
29
|
+
geovisio/utils/auth.py,sha256=iIssHEDqAWp5D514pmYjoAzr-Jy6VDSDM3STtM8M56o,10810
|
|
30
|
+
geovisio/utils/db.py,sha256=DFyCEB5-xTUo6sn79SYJCzuvlgFNDVyNJ48Mana5vPI,2625
|
|
31
|
+
geovisio/utils/excluded_areas.py,sha256=6f3wwsgNpJKxAXnHH8RKlktgHpsG-0QVNTWDDTFqPZ8,2585
|
|
32
|
+
geovisio/utils/extent.py,sha256=vzOHvbG6lpSNt7KrsaonBOx7Tz46S1J603gLbZvs36g,557
|
|
33
|
+
geovisio/utils/fields.py,sha256=sNAmrSJ4e-nqm0-LoyO3l4Zynb-Jy8swhwmL3UcDN_o,2129
|
|
34
|
+
geovisio/utils/filesystems.py,sha256=W_wH7TlvdEux_q4FP0XInxruxlbepFSEpJbPLO9Cnr4,4133
|
|
35
|
+
geovisio/utils/link.py,sha256=lMWSUcAjQzq-r-U6VEIMR2ViVs5K8PVX7coF6XMFrmk,378
|
|
36
|
+
geovisio/utils/params.py,sha256=s9kBPHm4gRhMx10SD7mOPdG0tR_n_O-g_rgL8Fife6s,630
|
|
37
|
+
geovisio/utils/pictures.py,sha256=B5tFa_v_WjGpyYJs8x5G11jTpD4GEqM8UzVrCdrU7Sk,23764
|
|
38
|
+
geovisio/utils/reports.py,sha256=PgU0Td48WJg6XCq043he8Jif3WCA9nOTaGE0Yovo3h0,5626
|
|
39
|
+
geovisio/utils/sentry.py,sha256=Dw0rW2sNFbcpGojzpa-vjtJ5S7BH_XhsqfuGYBjHCG0,3759
|
|
40
|
+
geovisio/utils/sequences.py,sha256=H2Ef-XhQf0OfbLuvuUHC1bX2o7n3UQ1E0fmszlNz18A,24874
|
|
41
|
+
geovisio/utils/time.py,sha256=-hOs7FSx-8eiGmMQtTOrCoF8d_yMlj2306vfxJftEr8,642
|
|
42
|
+
geovisio/utils/tokens.py,sha256=evcboxseJ1jt0LAOkQz-ZEZ--v2P3Lh9JsaldQeHzLg,2890
|
|
43
|
+
geovisio/utils/upload_set.py,sha256=yzL6MQLGUnipbdk4D3Q0InHV90tbbLSojLBe9phIRj8,24541
|
|
44
|
+
geovisio/web/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
45
|
+
geovisio/web/auth.py,sha256=bpMb6ch6LJ8FIIfzYcrAjLS2yvwO4ohrLXfxdSYGLsQ,6882
|
|
46
|
+
geovisio/web/collections.py,sha256=xgejdbUSWNGDGnVXIBh9Zq8LD0TapbhQBLhHv7dH_Ck,38037
|
|
47
|
+
geovisio/web/configuration.py,sha256=8pHGG6LEID1NqaiAq0qg4kdRG5_uuM_F25afLt62_G0,1706
|
|
48
|
+
geovisio/web/docs.py,sha256=LdMxqZQs3moYHWWxJDY2J_pCS3i2zLNi2IUJ9Lwtrwo,52519
|
|
49
|
+
geovisio/web/excluded_areas.py,sha256=5BNSZ0UqgFMtgvgrJ73eYGJXPJRnV-mGEs36WDRRxTk,13024
|
|
50
|
+
geovisio/web/items.py,sha256=Ms_ojboK22S1pAFZAuJPRkcqS9sd3grP7FOu4phQFbg,54291
|
|
51
|
+
geovisio/web/map.py,sha256=CoscEcuzGsEU27y2we-bWl7kfGkbe4Q9J4PUOgOtLpQ,20175
|
|
52
|
+
geovisio/web/params.py,sha256=1hO3MQuEXJBk5ZQAk-Mau9gRxwWUITxQkgtSnDEN06E,20542
|
|
53
|
+
geovisio/web/pictures.py,sha256=qbhgLsI6YtpFxXn1a3dzO66nnVrWglRZSXWmlfJr1tU,6394
|
|
54
|
+
geovisio/web/reports.py,sha256=8v9a4PMM9RsvSGadZEN2o5PTKG_TohjyMMEBfFeY13E,14123
|
|
55
|
+
geovisio/web/rss.py,sha256=NLUd2Or92tcKRaGUHAze6QMLWczHyzag9ybOzrA8djE,2962
|
|
56
|
+
geovisio/web/stac.py,sha256=V00aTv74faiCQRslsv1_dWZpZTNXAB5YryOA4O_sJh4,14382
|
|
57
|
+
geovisio/web/tokens.py,sha256=AeQE_Xkqb988wRNnT5fkPOB7xsrHDqyI2GXM7drqzIo,8904
|
|
58
|
+
geovisio/web/upload_set.py,sha256=uU0jtFjSYq0f0BwRKZ7sJxr6EEpnmp2D098YxoajcdY,30433
|
|
59
|
+
geovisio/web/users.py,sha256=HN6vcoTwi4VPoCofw2_o6HO7tLWh6mA6KfOe8w8Sv9c,8468
|
|
60
|
+
geovisio/web/utils.py,sha256=kudTbV4Tgtkbd4oUWFTFpyWNINpxAa-VQNbxYEiR6pM,3640
|
|
61
|
+
geovisio/workers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
62
|
+
geovisio/workers/runner_pictures.py,sha256=mqtjzbCZw0aRXhRki4CPEL5-9tq5q2kRqloKDFwpw9U,22151
|
|
63
|
+
geovisio-2.7.0.dist-info/LICENSE,sha256=iRFSz7MJ7_j4hh3hvIgzNbS2buy5NMva8lulaixd3IE,1069
|
|
64
|
+
geovisio-2.7.0.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
|
|
65
|
+
geovisio-2.7.0.dist-info/METADATA,sha256=alZz_qktBwhysrEBytugFi79xJUgIJAq_aiHwFSWZCY,4259
|
|
66
|
+
geovisio-2.7.0.dist-info/RECORD,,
|
geovisio-2.6.0.dist-info/RECORD
DELETED
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
geovisio/__init__.py,sha256=yapR_h5nku65rSCVCBC_xhqjkTrnUcPgAKFZtKFztHw,6390
|
|
2
|
-
geovisio/config_app.py,sha256=CJoKKPSTxgT1Chspd8JShjEve_iZ8vuQGJ5CZZq2VRY,8795
|
|
3
|
-
geovisio/db_migrations.py,sha256=6phXwwVWR9_qMghzphb7Dqsm2dwIhB9Ipy6TIhWMVw0,3600
|
|
4
|
-
geovisio/errors.py,sha256=uTn-kI7SUl5OPB8Mv3Qqu7Ucp5JvcqWPQFfgLCqsEpI,1376
|
|
5
|
-
geovisio/admin_cli/__init__.py,sha256=8xlb3WN1DtEVurW9B0VuOFtI33oRV5TvxV6hOkUUpM0,3173
|
|
6
|
-
geovisio/admin_cli/cleanup.py,sha256=SevtztDBN9844wT_6G_DubTNoK2b3N4n53LFgAPRxcI,4882
|
|
7
|
-
geovisio/admin_cli/db.py,sha256=BCF7nRKChdFU8fW_3T5ceodofUeEF71i6rN96MLZUag,1000
|
|
8
|
-
geovisio/admin_cli/default_account_tokens.py,sha256=W-v5uPjCBvAujjAUx1HrfgjPj-tEyncb-EUMLpsWc9w,469
|
|
9
|
-
geovisio/admin_cli/reorder_sequences.py,sha256=LKKzdO2w4N-cQmi6rqKHKYG5YGzPxYRTbnfcPKakuYM,2826
|
|
10
|
-
geovisio/admin_cli/sequence_heading.py,sha256=BEPuRfCDXXpqSSzK2ysrxHf0OD4THzrMI_YK2uXQlGk,633
|
|
11
|
-
geovisio/templates/main.html,sha256=7B5ecCpKfUFSNnLg9ut3MZA8Qg_FPceAxQiB2qD90ag,2720
|
|
12
|
-
geovisio/templates/viewer.html,sha256=CS7zkQqIWMSbCvjh8NTftECha_-UEEQLmgXwEFi_bbA,892
|
|
13
|
-
geovisio/utils/__init__.py,sha256=tNKCk-F-VnonAj3K86RXjD8Xnq_9edY-CpV1_YKUcaE,67
|
|
14
|
-
geovisio/utils/auth.py,sha256=w3vBMupyU1n7Yde3j66Gz_BcGrXmrBRHhzaRWK7A1Ww,9395
|
|
15
|
-
geovisio/utils/fields.py,sha256=EaLJa_MEGIrOMVeAIrF8UZsIIgRI8DFgJRafFyqLt6s,2145
|
|
16
|
-
geovisio/utils/filesystems.py,sha256=dr1uvwgOGuK7y3UNF3GVGiXS-39Gs81QWGEfPwd-wbo,4148
|
|
17
|
-
geovisio/utils/pictures.py,sha256=5e-5L8MGex7px9z1IGuaJn4-pR99KWqp9mCI4qs3ZfE,22811
|
|
18
|
-
geovisio/utils/sentry.py,sha256=Dw0rW2sNFbcpGojzpa-vjtJ5S7BH_XhsqfuGYBjHCG0,3759
|
|
19
|
-
geovisio/utils/sequences.py,sha256=t_kAUC8a2nrVIsI9Z9Zy2__paOYk6lQm3Pe1bXhW16Y,18884
|
|
20
|
-
geovisio/utils/time.py,sha256=-hOs7FSx-8eiGmMQtTOrCoF8d_yMlj2306vfxJftEr8,642
|
|
21
|
-
geovisio/utils/tokens.py,sha256=_GBaD7LZXaO5-gbaZ1taz1irljogIHXKQyeT8EtbT-U,3111
|
|
22
|
-
geovisio/web/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
23
|
-
geovisio/web/auth.py,sha256=kXUsZr-8Hrgg72gt2h8KVoE4Iaw8uOsTp63Pn7lLpMM,6964
|
|
24
|
-
geovisio/web/collections.py,sha256=ylZCqoCGam1utCenSIbx2MuNm7jysf5yBjwE4jv8J1k,39864
|
|
25
|
-
geovisio/web/configuration.py,sha256=ZUDhsmMC5ZFBqHRYRgJyxv20MNpBbSwgUdlR7ShrTLQ,1111
|
|
26
|
-
geovisio/web/docs.py,sha256=v1WjLdxPG6NcHwmTvMe-tJeYDf0Qo1BiWLZqTZbSjOg,40106
|
|
27
|
-
geovisio/web/items.py,sha256=ewnz0PH_0M2bXOxLuzMjsA21IuTnP5pc6o_8rDQ8ass,51791
|
|
28
|
-
geovisio/web/map.py,sha256=AM1Q1VVrh7DV30wdQh-ONDCbt0qsQQFnA0P7zqUQkFo,20217
|
|
29
|
-
geovisio/web/params.py,sha256=n0gzoQAD0bSKEA4-PVOowhp06EUoOhbqR7CKlWz7HTU,18996
|
|
30
|
-
geovisio/web/pictures.py,sha256=R3INt-XxRfUbM0BZqZ0l1PlpQHYjp1WQhP3BHOZVizM,6889
|
|
31
|
-
geovisio/web/rss.py,sha256=RBYJIrvdNr_PtzrhDruY1ZQFNPH16EK7GtOfxP4roEY,2852
|
|
32
|
-
geovisio/web/stac.py,sha256=ktVNa1zHDNSW59zwzn8K1tw3ZOFBQFGD-Uho_2KjCGQ,14705
|
|
33
|
-
geovisio/web/tokens.py,sha256=xjKfnKbdsAkz5CJmphouI1iI-eOXUaUaaPaNF7U_3-E,10039
|
|
34
|
-
geovisio/web/users.py,sha256=9FGcPjKxRC1n-q4BvFdH2tsZ0s71gYXGwux8ggmEOA0,8109
|
|
35
|
-
geovisio/web/utils.py,sha256=YdVA3K7STinpNqTVFl3QYDntZZRfDV4ZZ85MqW0mzYw,3095
|
|
36
|
-
geovisio/workers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
37
|
-
geovisio/workers/runner_pictures.py,sha256=n5MJwcblz6MxVI-5EpXrvugReqaIkqE16V3irzU575g,18657
|
|
38
|
-
geovisio-2.6.0.dist-info/LICENSE,sha256=iRFSz7MJ7_j4hh3hvIgzNbS2buy5NMva8lulaixd3IE,1069
|
|
39
|
-
geovisio-2.6.0.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
|
|
40
|
-
geovisio-2.6.0.dist-info/METADATA,sha256=XoifqlSsvCbhosqExrUxbt2IWwfpt2Rha3uyQQq6VJo,4149
|
|
41
|
-
geovisio-2.6.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|