stac-fastapi-core 4.1.0__py3-none-any.whl → 4.2.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.
stac_fastapi/core/core.py CHANGED
@@ -607,7 +607,7 @@ class CoreClient(AsyncBaseCoreClient):
607
607
  if hasattr(search_request, "filter_expr"):
608
608
  cql2_filter = getattr(search_request, "filter_expr", None)
609
609
  try:
610
- search = self.database.apply_cql2_filter(search, cql2_filter)
610
+ search = await self.database.apply_cql2_filter(search, cql2_filter)
611
611
  except Exception as e:
612
612
  raise HTTPException(
613
613
  status_code=400, detail=f"Error with cql2_json filter: {e}"
@@ -712,10 +712,11 @@ class TransactionsClient(AsyncBaseTransactionsClient):
712
712
  for feature in features
713
713
  ]
714
714
  attempted = len(processed_items)
715
+
715
716
  success, errors = await self.database.bulk_async(
716
- collection_id,
717
- processed_items,
718
- refresh=kwargs.get("refresh", False),
717
+ collection_id=collection_id,
718
+ processed_items=processed_items,
719
+ **kwargs,
719
720
  )
720
721
  if errors:
721
722
  logger.error(
@@ -729,10 +730,7 @@ class TransactionsClient(AsyncBaseTransactionsClient):
729
730
 
730
731
  # Handle single item
731
732
  await self.database.create_item(
732
- item_dict,
733
- refresh=kwargs.get("refresh", False),
734
- base_url=base_url,
735
- exist_ok=False,
733
+ item_dict, base_url=base_url, exist_ok=False, **kwargs
736
734
  )
737
735
  return ItemSerializer.db_to_stac(item_dict, base_url)
738
736
 
@@ -757,11 +755,12 @@ class TransactionsClient(AsyncBaseTransactionsClient):
757
755
  """
758
756
  item = item.model_dump(mode="json")
759
757
  base_url = str(kwargs["request"].base_url)
758
+
760
759
  now = datetime_type.now(timezone.utc).strftime("%Y-%m-%dT%H:%M:%SZ")
761
760
  item["properties"]["updated"] = now
762
761
 
763
762
  await self.database.create_item(
764
- item, refresh=kwargs.get("refresh", False), base_url=base_url, exist_ok=True
763
+ item, base_url=base_url, exist_ok=True, **kwargs
765
764
  )
766
765
 
767
766
  return ItemSerializer.db_to_stac(item, base_url)
@@ -777,7 +776,9 @@ class TransactionsClient(AsyncBaseTransactionsClient):
777
776
  Returns:
778
777
  None: Returns 204 No Content on successful deletion
779
778
  """
780
- await self.database.delete_item(item_id=item_id, collection_id=collection_id)
779
+ await self.database.delete_item(
780
+ item_id=item_id, collection_id=collection_id, **kwargs
781
+ )
781
782
  return None
782
783
 
783
784
  @overrides
@@ -798,8 +799,9 @@ class TransactionsClient(AsyncBaseTransactionsClient):
798
799
  """
799
800
  collection = collection.model_dump(mode="json")
800
801
  request = kwargs["request"]
802
+
801
803
  collection = self.database.collection_serializer.stac_to_db(collection, request)
802
- await self.database.create_collection(collection=collection)
804
+ await self.database.create_collection(collection=collection, **kwargs)
803
805
  return CollectionSerializer.db_to_stac(
804
806
  collection,
805
807
  request,
@@ -835,7 +837,7 @@ class TransactionsClient(AsyncBaseTransactionsClient):
835
837
 
836
838
  collection = self.database.collection_serializer.stac_to_db(collection, request)
837
839
  await self.database.update_collection(
838
- collection_id=collection_id, collection=collection
840
+ collection_id=collection_id, collection=collection, **kwargs
839
841
  )
840
842
 
841
843
  return CollectionSerializer.db_to_stac(
@@ -860,7 +862,7 @@ class TransactionsClient(AsyncBaseTransactionsClient):
860
862
  Raises:
861
863
  NotFoundError: If the collection doesn't exist
862
864
  """
863
- await self.database.delete_collection(collection_id=collection_id)
865
+ await self.database.delete_collection(collection_id=collection_id, **kwargs)
864
866
  return None
865
867
 
866
868
 
@@ -937,7 +939,7 @@ class BulkTransactionsClient(BaseBulkTransactionsClient):
937
939
  success, errors = self.database.bulk_sync(
938
940
  collection_id,
939
941
  processed_items,
940
- refresh=kwargs.get("refresh", False),
942
+ **kwargs,
941
943
  )
942
944
  if errors:
943
945
  logger.error(f"Bulk sync operation encountered errors: {errors}")
@@ -467,7 +467,7 @@ class EsAsyncAggregationClient(AsyncBaseAggregationClient):
467
467
 
468
468
  if aggregate_request.filter_expr:
469
469
  try:
470
- search = self.database.apply_cql2_filter(
470
+ search = await self.database.apply_cql2_filter(
471
471
  search, aggregate_request.filter_expr
472
472
  )
473
473
  except Exception as e:
@@ -10,7 +10,7 @@
10
10
  # defines the LIKE, IN, and BETWEEN operators.
11
11
 
12
12
  # Basic Spatial Operators (http://www.opengis.net/spec/cql2/1.0/conf/basic-spatial-operators)
13
- # defines the intersects operator (S_INTERSECTS).
13
+ # defines spatial operators (S_INTERSECTS, S_CONTAINS, S_WITHIN, S_DISJOINT).
14
14
  # """
15
15
 
16
16
  import re
@@ -82,26 +82,16 @@ class AdvancedComparisonOp(str, Enum):
82
82
  IN = "in"
83
83
 
84
84
 
85
- class SpatialIntersectsOp(str, Enum):
86
- """Enumeration for spatial intersection operator as per CQL2 standards."""
85
+ class SpatialOp(str, Enum):
86
+ """Enumeration for spatial operators as per CQL2 standards."""
87
87
 
88
88
  S_INTERSECTS = "s_intersects"
89
+ S_CONTAINS = "s_contains"
90
+ S_WITHIN = "s_within"
91
+ S_DISJOINT = "s_disjoint"
89
92
 
90
93
 
91
- queryables_mapping = {
92
- "id": "id",
93
- "collection": "collection",
94
- "geometry": "geometry",
95
- "datetime": "properties.datetime",
96
- "created": "properties.created",
97
- "updated": "properties.updated",
98
- "cloud_cover": "properties.eo:cloud_cover",
99
- "cloud_shadow_percentage": "properties.s2:cloud_shadow_percentage",
100
- "nodata_pixel_percentage": "properties.s2:nodata_pixel_percentage",
101
- }
102
-
103
-
104
- def to_es_field(field: str) -> str:
94
+ def to_es_field(queryables_mapping: Dict[str, Any], field: str) -> str:
105
95
  """
106
96
  Map a given field to its corresponding Elasticsearch field according to a predefined mapping.
107
97
 
@@ -114,7 +104,7 @@ def to_es_field(field: str) -> str:
114
104
  return queryables_mapping.get(field, field)
115
105
 
116
106
 
117
- def to_es(query: Dict[str, Any]) -> Dict[str, Any]:
107
+ def to_es(queryables_mapping: Dict[str, Any], query: Dict[str, Any]) -> Dict[str, Any]:
118
108
  """
119
109
  Transform a simplified CQL2 query structure to an Elasticsearch compatible query DSL.
120
110
 
@@ -130,7 +120,13 @@ def to_es(query: Dict[str, Any]) -> Dict[str, Any]:
130
120
  LogicalOp.OR: "should",
131
121
  LogicalOp.NOT: "must_not",
132
122
  }[query["op"]]
133
- return {"bool": {bool_type: [to_es(sub_query) for sub_query in query["args"]]}}
123
+ return {
124
+ "bool": {
125
+ bool_type: [
126
+ to_es(queryables_mapping, sub_query) for sub_query in query["args"]
127
+ ]
128
+ }
129
+ }
134
130
 
135
131
  elif query["op"] in [
136
132
  ComparisonOp.EQ,
@@ -147,7 +143,7 @@ def to_es(query: Dict[str, Any]) -> Dict[str, Any]:
147
143
  ComparisonOp.GTE: "gte",
148
144
  }
149
145
 
150
- field = to_es_field(query["args"][0]["property"])
146
+ field = to_es_field(queryables_mapping, query["args"][0]["property"])
151
147
  value = query["args"][1]
152
148
  if isinstance(value, dict) and "timestamp" in value:
153
149
  value = value["timestamp"]
@@ -170,11 +166,11 @@ def to_es(query: Dict[str, Any]) -> Dict[str, Any]:
170
166
  return {"range": {field: {range_op[query["op"]]: value}}}
171
167
 
172
168
  elif query["op"] == ComparisonOp.IS_NULL:
173
- field = to_es_field(query["args"][0]["property"])
169
+ field = to_es_field(queryables_mapping, query["args"][0]["property"])
174
170
  return {"bool": {"must_not": {"exists": {"field": field}}}}
175
171
 
176
172
  elif query["op"] == AdvancedComparisonOp.BETWEEN:
177
- field = to_es_field(query["args"][0]["property"])
173
+ field = to_es_field(queryables_mapping, query["args"][0]["property"])
178
174
  gte, lte = query["args"][1], query["args"][2]
179
175
  if isinstance(gte, dict) and "timestamp" in gte:
180
176
  gte = gte["timestamp"]
@@ -183,20 +179,34 @@ def to_es(query: Dict[str, Any]) -> Dict[str, Any]:
183
179
  return {"range": {field: {"gte": gte, "lte": lte}}}
184
180
 
185
181
  elif query["op"] == AdvancedComparisonOp.IN:
186
- field = to_es_field(query["args"][0]["property"])
182
+ field = to_es_field(queryables_mapping, query["args"][0]["property"])
187
183
  values = query["args"][1]
188
184
  if not isinstance(values, list):
189
185
  raise ValueError(f"Arg {values} is not a list")
190
186
  return {"terms": {field: values}}
191
187
 
192
188
  elif query["op"] == AdvancedComparisonOp.LIKE:
193
- field = to_es_field(query["args"][0]["property"])
189
+ field = to_es_field(queryables_mapping, query["args"][0]["property"])
194
190
  pattern = cql2_like_to_es(query["args"][1])
195
191
  return {"wildcard": {field: {"value": pattern, "case_insensitive": True}}}
196
192
 
197
- elif query["op"] == SpatialIntersectsOp.S_INTERSECTS:
198
- field = to_es_field(query["args"][0]["property"])
193
+ elif query["op"] in [
194
+ SpatialOp.S_INTERSECTS,
195
+ SpatialOp.S_CONTAINS,
196
+ SpatialOp.S_WITHIN,
197
+ SpatialOp.S_DISJOINT,
198
+ ]:
199
+ field = to_es_field(queryables_mapping, query["args"][0]["property"])
199
200
  geometry = query["args"][1]
200
- return {"geo_shape": {field: {"shape": geometry, "relation": "intersects"}}}
201
+
202
+ relation_mapping = {
203
+ SpatialOp.S_INTERSECTS: "intersects",
204
+ SpatialOp.S_CONTAINS: "contains",
205
+ SpatialOp.S_WITHIN: "within",
206
+ SpatialOp.S_DISJOINT: "disjoint",
207
+ }
208
+
209
+ relation = relation_mapping[query["op"]]
210
+ return {"geo_shape": {field: {"shape": geometry, "relation": relation}}}
201
211
 
202
212
  return {}
@@ -12,20 +12,75 @@ from stac_fastapi.types.stac import Item
12
12
  MAX_LIMIT = 10000
13
13
 
14
14
 
15
- def get_bool_env(name: str, default: bool = False) -> bool:
15
+ def validate_refresh(value: Union[str, bool]) -> str:
16
+ """
17
+ Validate the `refresh` parameter value.
18
+
19
+ Args:
20
+ value (Union[str, bool]): The `refresh` parameter value, which can be a string or a boolean.
21
+
22
+ Returns:
23
+ str: The validated value of the `refresh` parameter, which can be "true", "false", or "wait_for".
24
+ """
25
+ logger = logging.getLogger(__name__)
26
+
27
+ # Handle boolean-like values using get_bool_env
28
+ if isinstance(value, bool) or value in {
29
+ "true",
30
+ "false",
31
+ "1",
32
+ "0",
33
+ "yes",
34
+ "no",
35
+ "y",
36
+ "n",
37
+ }:
38
+ is_true = get_bool_env("DATABASE_REFRESH", default=value)
39
+ return "true" if is_true else "false"
40
+
41
+ # Normalize to lowercase for case-insensitivity
42
+ value = value.lower()
43
+
44
+ # Handle "wait_for" explicitly
45
+ if value == "wait_for":
46
+ return "wait_for"
47
+
48
+ # Log a warning for invalid values and default to "false"
49
+ logger.warning(
50
+ f"Invalid value for `refresh`: '{value}'. Expected 'true', 'false', or 'wait_for'. Defaulting to 'false'."
51
+ )
52
+ return "false"
53
+
54
+
55
+ def get_bool_env(name: str, default: Union[bool, str] = False) -> bool:
16
56
  """
17
57
  Retrieve a boolean value from an environment variable.
18
58
 
19
59
  Args:
20
60
  name (str): The name of the environment variable.
21
- default (bool, optional): The default value to use if the variable is not set or unrecognized. Defaults to False.
61
+ default (Union[bool, str], optional): The default value to use if the variable is not set or unrecognized. Defaults to False.
22
62
 
23
63
  Returns:
24
64
  bool: The boolean value parsed from the environment variable.
25
65
  """
26
- value = os.getenv(name, str(default).lower())
27
66
  true_values = ("true", "1", "yes", "y")
28
67
  false_values = ("false", "0", "no", "n")
68
+
69
+ # Normalize the default value
70
+ if isinstance(default, bool):
71
+ default_str = "true" if default else "false"
72
+ elif isinstance(default, str):
73
+ default_str = default.lower()
74
+ else:
75
+ logger = logging.getLogger(__name__)
76
+ logger.warning(
77
+ f"The `default` parameter must be a boolean or string, got {type(default).__name__}. "
78
+ f"Falling back to `False`."
79
+ )
80
+ default_str = "false"
81
+
82
+ # Retrieve and normalize the environment variable value
83
+ value = os.getenv(name, default_str)
29
84
  if value.lower() in true_values:
30
85
  return True
31
86
  elif value.lower() in false_values:
@@ -34,9 +89,9 @@ def get_bool_env(name: str, default: bool = False) -> bool:
34
89
  logger = logging.getLogger(__name__)
35
90
  logger.warning(
36
91
  f"Environment variable '{name}' has unrecognized value '{value}'. "
37
- f"Expected one of {true_values + false_values}. Using default: {default}"
92
+ f"Expected one of {true_values + false_values}. Using default: {default_str}"
38
93
  )
39
- return default
94
+ return default_str in true_values
40
95
 
41
96
 
42
97
  def bbox2polygon(b0: float, b1: float, b2: float, b3: float) -> List[List[List[float]]]:
@@ -1,2 +1,2 @@
1
1
  """library version."""
2
- __version__ = "4.1.0"
2
+ __version__ = "4.2.0"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: stac-fastapi-core
3
- Version: 4.1.0
3
+ Version: 4.2.0
4
4
  Summary: Core library for the Elasticsearch and Opensearch stac-fastapi backends.
5
5
  Home-page: https://github.com/stac-utils/stac-fastapi-elasticsearch-opensearch
6
6
  License: MIT
@@ -135,6 +135,7 @@ You can customize additional settings in your `.env` file:
135
135
  | `STAC_FASTAPI_TITLE` | Title of the API in the documentation. | `stac-fastapi-elasticsearch` or `stac-fastapi-opensearch` | Optional |
136
136
  | `STAC_FASTAPI_DESCRIPTION` | Description of the API in the documentation. | N/A | Optional |
137
137
  | `STAC_FASTAPI_VERSION` | API version. | `2.1` | Optional |
138
+ | `STAC_FASTAPI_LANDING_PAGE_ID` | Landing page ID | `stac-fastapi` | Optional |
138
139
  | `APP_HOST` | Server bind address. | `0.0.0.0` | Optional |
139
140
  | `APP_PORT` | Server port. | `8080` | Optional |
140
141
  | `ENVIRONMENT` | Runtime environment. | `local` | Optional |
@@ -142,10 +143,12 @@ You can customize additional settings in your `.env` file:
142
143
  | `RELOAD` | Enable auto-reload for development. | `true` | Optional |
143
144
  | `STAC_FASTAPI_RATE_LIMIT` | API rate limit per client. | `200/minute` | Optional |
144
145
  | `BACKEND` | Tests-related variable | `elasticsearch` or `opensearch` based on the backend | Optional |
145
- | `ELASTICSEARCH_VERSION` | Version of Elasticsearch to use. | `8.11.0` | Optional |
146
- | `ENABLE_DIRECT_RESPONSE` | Enable direct response for maximum performance (disables all FastAPI dependencies, including authentication, custom status codes, and validation) | `false` | Optional |
146
+ | `ELASTICSEARCH_VERSION` | Version of Elasticsearch to use. | `8.11.0` | Optional | |
147
147
  | `OPENSEARCH_VERSION` | OpenSearch version | `2.11.1` | Optional
148
- | `RAISE_ON_BULK_ERROR` | Controls whether bulk insert operations raise exceptions on errors. If set to `true`, the operation will stop and raise an exception when an error occurs. If set to `false`, errors will be logged, and the operation will continue. **Note:** STAC Item and ItemCollection validation errors will always raise, regardless of this flag. | `false` | Optional |
148
+ | `ENABLE_DIRECT_RESPONSE` | Enable direct response for maximum performance (disables all FastAPI dependencies, including authentication, custom status codes, and validation) | `false` | Optional
149
+ | `RAISE_ON_BULK_ERROR` | Controls whether bulk insert operations raise exceptions on errors. If set to `true`, the operation will stop and raise an exception when an error occurs. If set to `false`, errors will be logged, and the operation will continue. **Note:** STAC Item and ItemCollection validation errors will always raise, regardless of this flag. | `false` Optional |
150
+ | `DATABASE_REFRESH` | Controls whether database operations refresh the index immediately after changes. If set to `true`, changes will be immediately searchable. If set to `false`, changes may not be immediately visible but can improve performance for bulk operations. If set to `wait_for`, changes will wait for the next refresh cycle to become visible. | `false` | Optional |
151
+ | `ENABLE_TRANSACTIONS_EXTENSIONS` | Enables or disables the Transactions and Bulk Transactions API extensions. If set to `false`, the POST `/collections` route and related transaction endpoints (including bulk transaction operations) will be unavailable in the API. This is useful for deployments where mutating the catalog via the API should be prevented. | `true` | Optional |
149
152
 
150
153
  > [!NOTE]
151
154
  > The variables `ES_HOST`, `ES_PORT`, `ES_USE_SSL`, and `ES_VERIFY_CERTS` apply to both Elasticsearch and OpenSearch backends, so there is no need to rename the key names to `OS_` even if you're using OpenSearch.
@@ -2,24 +2,24 @@ stac_fastapi/core/__init__.py,sha256=8izV3IWRGdXmDOK1hIPQAanbWs9EI04PJCGgqG1ZGIs
2
2
  stac_fastapi/core/base_database_logic.py,sha256=GfxPMtg2gHAZM44haIgi_9J-IG1et_FYA5xRBosJpJA,1608
3
3
  stac_fastapi/core/base_settings.py,sha256=R3_Sx7n5XpGMs3zAwFJD7y008WvGU_uI2xkaabm82Kg,239
4
4
  stac_fastapi/core/basic_auth.py,sha256=RhFv3RVSHF6OaqnaaU2DO4ncJ_S5nB1q8UNpnVJJsrk,2155
5
- stac_fastapi/core/core.py,sha256=6mJBCSufrkOmJwjcLB2HYSmY9ocG946QPyw0zgZK6gI,41334
5
+ stac_fastapi/core/core.py,sha256=SoJy0VLpHNBQixR-JrKg45YC3WyHCa7pLqxGFyMv7rU,41286
6
6
  stac_fastapi/core/database_logic.py,sha256=KXBNL47QcqYsmtRrHjKaH3r_A4Wl4DUpumSDiuj4uVU,7051
7
7
  stac_fastapi/core/datetime_utils.py,sha256=ICUHPgvbH-xumIKdKVtcXogaCNEsxoaVqhWlVoCx-Ug,1481
8
8
  stac_fastapi/core/rate_limit.py,sha256=Gu8dAaJReGsj1L91U6m2tflU6RahpXDRs2-AYSKoybA,1318
9
9
  stac_fastapi/core/route_dependencies.py,sha256=zefYlfQTMW292vdqmtquW4UswtBHwH5Pm-8UynyZbJQ,5522
10
10
  stac_fastapi/core/serializers.py,sha256=pJjpwA6BOHjCXBCmwVTH7MOmTjY9NXF1-i_E0yB60Zg,6228
11
11
  stac_fastapi/core/session.py,sha256=Qr080UU_7qKtIv0qZAuOV7oNUQUzT5Yn00h-m_aoCvY,473
12
- stac_fastapi/core/utilities.py,sha256=493rYGimjWykrkWnRia1Aquc4Jvlyvio21VZcEmdxPo,6743
13
- stac_fastapi/core/version.py,sha256=3xU5aBmxgAcPizRlef_YROCW9ULsGOA4flSyd9AQog4,45
12
+ stac_fastapi/core/utilities.py,sha256=bMtM2oxTky94hFbwf_n7BcL1TY2EKq4pOx616TrZbjQ,8407
13
+ stac_fastapi/core/version.py,sha256=XAYr-IO1hoDdSshTkYzWFp3wj4AdjSQwUik30pTEaAo,45
14
14
  stac_fastapi/core/extensions/__init__.py,sha256=2MCo0UoInkgItIM8id-rbeygzn_qUOvTGfr8jFXZjHQ,167
15
- stac_fastapi/core/extensions/aggregation.py,sha256=H5Yzvs-QH60P8jJm08Ng5FDvMU1o77WoNNZ2mKxUFjI,23062
15
+ stac_fastapi/core/extensions/aggregation.py,sha256=nH9vKlPawo9wCaYVmMMh0_iHQbQbF7GwVuwWVZoC_P4,23068
16
16
  stac_fastapi/core/extensions/fields.py,sha256=NCT5XHvfaf297eDPNaIFsIzvJnbbUTpScqF0otdx0NA,1066
17
- stac_fastapi/core/extensions/filter.py,sha256=F7ECGQO-nDnc8TFmL5FK1TJMeWx5TmKMjwb8b4kRgOc,6394
17
+ stac_fastapi/core/extensions/filter.py,sha256=ytF0zzDX_FZAv2Rz7bd4C0dFnMcdg3EXjALOmOKpCmY,6745
18
18
  stac_fastapi/core/extensions/query.py,sha256=Xmo8pfZEZKPudZEjjozv3R0wLOP0ayjC9E67sBOXqWY,1803
19
19
  stac_fastapi/core/models/__init__.py,sha256=g-D1DiGfmC9Bg27DW9JzkN6fAvscv75wyhyiZ6NzvIk,48
20
20
  stac_fastapi/core/models/links.py,sha256=3jk4t2wA3RGTq9_BbzFsMKvMbgDBajQy4vKZFSHt7E8,6666
21
21
  stac_fastapi/core/models/search.py,sha256=7SgAUyzHGXBXSqB4G6cwq9FMwoAS00momb7jvBkjyow,27
22
- stac_fastapi_core-4.1.0.dist-info/METADATA,sha256=GZZtIG4nc-v9LRmEN1XAdcqRMF1IrVMBzfuRDoc9vDc,20524
23
- stac_fastapi_core-4.1.0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
24
- stac_fastapi_core-4.1.0.dist-info/top_level.txt,sha256=vqn-D9-HsRPTTxy0Vk_KkDmTiMES4owwBQ3ydSZYb2s,13
25
- stac_fastapi_core-4.1.0.dist-info/RECORD,,
22
+ stac_fastapi_core-4.2.0.dist-info/METADATA,sha256=IgYty3ErvzuKDsaWAujVjJBtxYMq1UM_iTgxDARs9aY,21549
23
+ stac_fastapi_core-4.2.0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
24
+ stac_fastapi_core-4.2.0.dist-info/top_level.txt,sha256=vqn-D9-HsRPTTxy0Vk_KkDmTiMES4owwBQ3ydSZYb2s,13
25
+ stac_fastapi_core-4.2.0.dist-info/RECORD,,