Add json_count_keys usage example#763
Open
RUNQILIU-123 wants to merge 1 commit into
Open
Conversation
✅ Deploy Preview for splashkit ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
himanshigaba22
suggested changes
May 8, 2026
himanshigaba22
left a comment
There was a problem hiding this comment.
Clean and simple example, and the deploy is passing nicely! A few things to fix up though - the .txt file has 2 lines when it should be title only, so the description line needs to go.
Also, none of the language versions call free_json() after creating the JSON object, which should be added to avoid a memory leak. Worth also confirming whether usage-example-references.json has been updated or if the dynamic scanner handles it.
Everything else looks good - the file manifest is complete, the namespace is properly wrapped, and the Python conventions are correct. Once those are sorted, it should be good to go!
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
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.
Summary
This pull request adds an initial usage example for
json_count_keysin the json category.Files added
What the example does
This example creates a Json object, adds a few top-level values, and displays the number of top-level keys.
Testing
Tested by running:
Verified that:
Notes
This is a small usage example for the
json_count_keysfunction in the json category.