-
Notifications
You must be signed in to change notification settings - Fork 0
GEN-1282: SN13 on demand data streaming endpoint integration into SDK #10
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
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
69137fc Merge pull request #13 from macrocosm-os/gen-1222_add_missing_nebula_to_dataset_query c024b86 GEN-1222 Add missing nebula to dataset query ee2edaa Merge pull request #12 from macrocosm-os/optional-fields-2 ada0239 max_rows is not optional - revert this change d452c9a make some fields in the proto files optional git-subtree-dir: protos git-subtree-split: 69137fcf99e56523bb9a6f74e267caf080056e4f
…_sn13_on_demand_integration
d93f373 Merge pull request #14 from macrocosm-os/gen_1282_sn13_on_demand_protos 11403f0 GEN-1277 using api_utils functions, updating OnDemandDataRequest limit to int64 6d1523c Merge pull request #113 from macrocosm-os/gen_1217_sn13_data_endpoint_for_constellation 7ce0c9b GEN-1217 explicit schema exchanged for protobuf.Struct, auth step added ff576f8 GEN-1217 adding additional fields to OnDemand endpoint 6e87a22 GEN-1217 adding additional verification_message field to Meta response field 8d0a0b2 GEN-1217 formatting test comment and inserting newline 862e3d9 GEN-1217 initial endpoint for on_demand_data_request added to constellation c3a64b7 (WIP) GEN-1217 migrating the sn13 data endpoint proto to sn13_validator.proto 0b659dd (WIP) GEN-1217 adding sn13 data endpoint to gravity.proto git-subtree-dir: protos git-subtree-split: d93f373d5168fb34720ef9fa9d309746660e7a1d
…_sn13_on_demand_integration
…ample using localhost base_url
cassova
reviewed
May 16, 2025
Contributor
|
You'll also need to bump the version in the pyproject.toml |
Contributor
Make sure this can be run with |
cassova
approved these changes
May 19, 2025
Contributor
cassova
left a comment
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.
looks good
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
Adds the on demand data streaming endpoint of the SN13 API, along with an example use case.
Notes
Sn13ClientandAsyncSn13Client.sn13.pywhich defines theAsyncSn13andSn13classes. These classes hold the general endpoint information.OnDemandData, which proxies into the sn13on_demand_data_requestendpoint of the sn13 api via Constellation API (see https://docs.macrocosmos.ai/developers/api-documentation/sn13-data-universe/endpoints for the sn13 api endpoint, andOnDemandDatain https://github.com/macrocosm-os/rift/blob/main/projects/constellation_api/api/sn13_server.go for the Constellation proxy implementation).sn13_on_demand_data.pyis provided. This can be run from root asuv run examples/sn13_on_demand_data.py.secure=Falseas we are not making a http request.