stac-fastapi-opensearch 6.7.2__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/opensearch/__init__.py +1 -0
- stac_fastapi/opensearch/app.py +295 -0
- stac_fastapi/opensearch/config.py +151 -0
- stac_fastapi/opensearch/database_logic.py +1725 -0
- stac_fastapi/opensearch/version.py +2 -0
- stac_fastapi_opensearch-6.7.2.dist-info/METADATA +71 -0
- stac_fastapi_opensearch-6.7.2.dist-info/RECORD +9 -0
- stac_fastapi_opensearch-6.7.2.dist-info/WHEEL +4 -0
- stac_fastapi_opensearch-6.7.2.dist-info/entry_points.txt +2 -0
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: stac_fastapi_opensearch
|
|
3
|
+
Version: 6.7.2
|
|
4
|
+
Summary: An implementation of STAC API based on the FastAPI framework with Opensearch.
|
|
5
|
+
Project-URL: Homepage, https://github.com/stac-utils/stac-fastapi-elasticsearch-opensearch
|
|
6
|
+
License: MIT
|
|
7
|
+
Keywords: FastAPI,Opensearch,STAC,STAC-API,stac-fastapi
|
|
8
|
+
Classifier: Intended Audience :: Developers
|
|
9
|
+
Classifier: Intended Audience :: Information Technology
|
|
10
|
+
Classifier: Intended Audience :: Science/Research
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
18
|
+
Requires-Python: >=3.9
|
|
19
|
+
Requires-Dist: opensearch-py[async]~=2.8.0
|
|
20
|
+
Requires-Dist: opensearch-py~=2.8.0
|
|
21
|
+
Requires-Dist: sfeos-helpers==6.7.2
|
|
22
|
+
Requires-Dist: stac-fastapi-core==6.7.2
|
|
23
|
+
Requires-Dist: starlette<0.36.0,>=0.35.0
|
|
24
|
+
Requires-Dist: uvicorn~=0.23.0
|
|
25
|
+
Provides-Extra: dev
|
|
26
|
+
Requires-Dist: ciso8601~=2.3.0; extra == 'dev'
|
|
27
|
+
Requires-Dist: httpx<0.28.0,>=0.24.0; extra == 'dev'
|
|
28
|
+
Requires-Dist: pre-commit~=3.0.0; extra == 'dev'
|
|
29
|
+
Requires-Dist: pytest-asyncio~=0.21.0; extra == 'dev'
|
|
30
|
+
Requires-Dist: pytest-cov~=4.0.0; extra == 'dev'
|
|
31
|
+
Requires-Dist: pytest~=8.0; extra == 'dev'
|
|
32
|
+
Provides-Extra: docs
|
|
33
|
+
Requires-Dist: mkdocs-material~=9.0.0; extra == 'docs'
|
|
34
|
+
Requires-Dist: mkdocs~=1.4.0; extra == 'docs'
|
|
35
|
+
Requires-Dist: pdocs~=1.2.0; extra == 'docs'
|
|
36
|
+
Provides-Extra: server
|
|
37
|
+
Requires-Dist: uvicorn[standard]~=0.23.0; extra == 'server'
|
|
38
|
+
Description-Content-Type: text/markdown
|
|
39
|
+
|
|
40
|
+
# stac-fastapi-opensearch
|
|
41
|
+
|
|
42
|
+
<p align="left">
|
|
43
|
+
<img src="https://raw.githubusercontent.com/stac-utils/stac-fastapi-elasticsearch-opensearch/refs/heads/main/assets/sfeos.png" width=1000>
|
|
44
|
+
</p>
|
|
45
|
+
|
|
46
|
+
[](https://pepy.tech/project/stac-fastapi-core)
|
|
47
|
+
[](https://github.com/stac-utils/stac-fastapi-elasticsearch-opensearch/graphs/contributors)
|
|
48
|
+
[](https://github.com/stac-utils/stac-fastapi-elasticsearch-opensearch/stargazers)
|
|
49
|
+
[](https://github.com/stac-utils/stac-fastapi-elasticsearch-opensearch/network/members)
|
|
50
|
+
[](https://pypi.org/project/stac-fastapi-elasticsearch/)
|
|
51
|
+
[](https://github.com/radiantearth/stac-spec/tree/v1.1.0)
|
|
52
|
+
[](https://github.com/stac-utils/stac-fastapi)
|
|
53
|
+
|
|
54
|
+
This is the OpenSearch backend for stac-fastapi. For full documentation, please see the [main README](https://github.com/stac-utils/stac-fastapi-elasticsearch-opensearch/blob/main/README.md).
|
|
55
|
+
|
|
56
|
+
## Package Information
|
|
57
|
+
|
|
58
|
+
- **Package name**: stac-fastapi-opensearch
|
|
59
|
+
- **Description**: An implementation of STAC API based on the FastAPI framework with OpenSearch.
|
|
60
|
+
- **Documentation**: [https://stac-utils.github.io/stac-fastapi-elasticsearch-opensearch/](https://stac-utils.github.io/stac-fastapi-elasticsearch-opensearch/)
|
|
61
|
+
- **Source**: [GitHub Repository](https://github.com/stac-utils/stac-fastapi-elasticsearch-opensearch/)
|
|
62
|
+
|
|
63
|
+
## Installation
|
|
64
|
+
|
|
65
|
+
```bash
|
|
66
|
+
pip install stac-fastapi-opensearch
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
## Quick Start
|
|
70
|
+
|
|
71
|
+
For detailed usage and examples, please refer to the [main documentation](https://stac-utils.github.io/stac-fastapi-elasticsearch-opensearch/).
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
stac_fastapi/opensearch/__init__.py,sha256=iJWMUgn7mUvmuPQSO_FlyhJ5eDdbbfmGv1qnFOX5-qk,28
|
|
2
|
+
stac_fastapi/opensearch/app.py,sha256=paRSzdkT3yxkegC3KEg98CA7PpNQ0C2LW0Mozb_LcP0,10025
|
|
3
|
+
stac_fastapi/opensearch/config.py,sha256=zGx4-4c5zEnu_Bh8Ra3SkIC83tluDiz-wKYQclRRDJA,5179
|
|
4
|
+
stac_fastapi/opensearch/database_logic.py,sha256=JfqoMWl1K-d8QTmNi5MFp3ewZWU-q2AXyAHynrFKEKw,66932
|
|
5
|
+
stac_fastapi/opensearch/version.py,sha256=H-rSs9N60FbjJQ3LVCd-stMghJbOR5tE16Afn_nnWVY,45
|
|
6
|
+
stac_fastapi_opensearch-6.7.2.dist-info/METADATA,sha256=qdm4-MYKQxpu99UNxLmctjnOQtpdXiYF9VS995_i1HE,3855
|
|
7
|
+
stac_fastapi_opensearch-6.7.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
8
|
+
stac_fastapi_opensearch-6.7.2.dist-info/entry_points.txt,sha256=zjZ0Xsr9BUNJqMkdPpl6zEIUykv1uFdJtNELFRChp0w,76
|
|
9
|
+
stac_fastapi_opensearch-6.7.2.dist-info/RECORD,,
|