-
-
Notifications
You must be signed in to change notification settings - Fork 155
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(api): include v4 in recent API usage #4881
Merged
Merged
Changes from 5 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
931c3bc
fix(api): include v4 usage in user's recent_api_usage
elisa-a-v 7e6317e
docs(api): update invert_user_logs docstring and add descriptive comment
elisa-a-v ef20c82
test(api): include tests for combining v3 and v4 API usage data
elisa-a-v 7ca25ba
Merge branch 'main' into 4787-include-v4-usage
elisa-a-v 2509393
Merge branch 'main' into 4787-include-v4-usage
ERosendo eb44e96
refactor(api): enhance maintainability by using itertools.batched ins…
elisa-a-v 2734054
refactor(api): rename variable to avoid type checker error
elisa-a-v ab65626
Merge branch 'main' into 4787-include-v4-usage
elisa-a-v File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
Oops, something went wrong.
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.
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.
I think we can use the
itertools.batched
function in the outer loop to process the data in chunks. This function iterates over the list, yielding tuples of items with a maximum size ofn
.Here's the documentation for reference: itertools.batched
This approach enhances future maintainability. If a new API version (e.g., v5) is introduced, we simply need to adjust the batch size instead of modifying the slicing expressions for previous versions (v3, v4) and adding a new slicing expression for v5.
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.
I added a
versions
array and usedlen(versions)
instead of a hardcoded2
so now we'd simply have to add"v5"
to theversions
array. What do you think? it does add a new nested for loop but it's a fixed and small number of inner iterations (just a couple of versions) so I'm guessing it's not too bad and it's probably worth the tradeoff.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.
@elisa-a-v looks great!