-
Notifications
You must be signed in to change notification settings - Fork 90
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
feat(datasets): add wrapped dataset to store the response from a POST/PUT request #905
Draft
npfp
wants to merge
1
commit into
kedro-org:main
Choose a base branch
from
npfp:feature/save-response-in-api-dataset
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains 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
npfp
commented
Oct 23, 2024
@property | ||
def _nested_dataset_type( | ||
self, | ||
) -> Type[JSONDataset | PickleDataset | MemoryDataset]: |
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.
There might be a better way to do this.
npfp
commented
Oct 23, 2024
Comment on lines
+243
to
+250
if self._extension == "json": | ||
self.wrapped_dataset.save(response.json()) #TODO(npfp): expose json loads arguments | ||
elif self._extension == "text": | ||
self.wrapped_dataset.save(response.text) | ||
elif self._extension: | ||
self.wrapped_dataset.save(response) |
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.
Might be better to check on the self.wrapped_dataset
type:
Suggested change
if self._extension == "json": | |
self.wrapped_dataset.save(response.json()) #TODO(npfp): expose json loads arguments | |
elif self._extension == "text": | |
self.wrapped_dataset.save(response.text) | |
elif self._extension: | |
self.wrapped_dataset.save(response) | |
elif isinstance(self.wrapped_dataset, JSONDataset): | |
self.wrapped_dataset.save(response.json()) #TODO(npfp): expose json loads arguments | |
elif isinstance(self.wrapped_dataset, TextDataset) | |
self.wrapped_dataset.save(response.text) | |
elif self._extension: | |
self.wrapped_dataset.save(response) |
npfp
force-pushed
the
feature/save-response-in-api-dataset
branch
from
October 23, 2024 12:54
2978b3c
to
dc433d1
Compare
npfp
changed the title
feat(api_dataset): add wrapped dataset to store the response from a POST/PUT request
feat(dataset): add wrapped dataset to store the response from a POST/PUT request
Oct 23, 2024
npfp
changed the title
feat(dataset): add wrapped dataset to store the response from a POST/PUT request
feat(datasets): add wrapped dataset to store the response from a POST/PUT request
Oct 23, 2024
…/PUT request Proof of concept to start discussions about design on how to store and use response. Signed-off-by: Nicolas Perrin <[email protected]>
npfp
force-pushed
the
feature/save-response-in-api-dataset
branch
from
October 23, 2024 13:14
dc433d1
to
e9980af
Compare
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.
Proof of concept to start discussions about design on how to store and use the
response
object.Description
To pursue discussions on how we could store the
response
object from aPOST
orPUT
api request.Relates to #748
Development notes
Checklist
RELEASE.md
file