-
Couldn't load subscription status.
- Fork 115
add from_extensions class method to create CollectionSearch extensions classes #745
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
stac_fastapi/extensions/stac_fastapi/extensions/core/collection_search/collection_search.py
Outdated
Show resolved
Hide resolved
stac_fastapi/extensions/stac_fastapi/extensions/core/collection_search/collection_search.py
Outdated
Show resolved
Hide resolved
stac_fastapi/extensions/stac_fastapi/extensions/core/collection_search/collection_search.py
Outdated
Show resolved
Hide resolved
stac_fastapi/extensions/stac_fastapi/extensions/core/collection_search/collection_search.py
Outdated
Show resolved
Hide resolved
stac_fastapi/extensions/stac_fastapi/extensions/core/collection_search/collection_search.py
Outdated
Show resolved
Hide resolved
stac_fastapi/extensions/stac_fastapi/extensions/core/collection_search/collection_search.py
Outdated
Show resolved
Hide resolved
b57cb7c to
a959cd8
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
⚠️ Performance Alert ⚠️
Possible performance regression was detected for benchmark 'STAC FastAPI Benchmarks'.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold 1.30.
| Benchmark suite | Current: a959cd8 | Previous: 4979a89 | Ratio |
|---|---|---|---|
Items With Model validation (200) |
40.17875478124901 iter/sec (stddev: 0.01999789596876311) |
55.33057294465105 iter/sec (stddev: 0.011217805523287447) |
1.38 |
This comment was automatically generated by workflow using github-action-benchmark.
ref: stac-utils/stac-fastapi-pgstac#136
This PR adds
from_extensionsclass method to help users creating CollectionSearch extensions classes when providing a list of available extensions. This will essentially create GET/POST models and also add the Conformances classes.Caveat: This is based on extensions classes names (but couldn't find anything smarter 🙉). We can't use the classes themself because it would create circular dependencies!
This is meant to be used in some
genericcases where users don't provide custom extensions (at least from the conformance POV)