
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
JSONxs is a Python library that uses a path expression string to get and set values in JSON and Python datastructures. It's slightly similar to JSONPath, but supports only simpler expressions and allows modifications.
JSONxs is safe to use with untrusted input.
Given the folowing datastructure:
::
d = {
'feed': {
'id': 'my_feed',
'url': 'http://example.com/feed.rss',
'tags': ['devel', 'example', 'python'],
'short.desc': 'A feed',
}
}
We can get, set and delete values from the stucture.
::
jsonxs(d, 'feed.id') # Get the 'id' field: 'my_feed'
jsonxs(d, 'feed.tags') # Get the list of tags.
jsonxs(d, 'feed.tags[-1]') # Get the last item in the 'tags' list: 'python'
jsonxs(d, 'feed.short\.desc') # Escape special char
jsonxs(d, 'feed.long\.desc', default='N/A') # Return default when key not found
jsonxs(d, 'feed.id', ACTION_SET, 'your_feed') # Set feed id to 'your_feed'
jsonxs(d, 'feed.tags[-1]', ACTION_SET, 'javascript') # Replace 'python' with 'javascript'
jsonxs(d, 'feed.tags[0]', ACTION_DEL) # Delete the first tag
jsonxs(d, 'feed.url', ACTION_DEL) # Delete the 'url' key from a dict
jsonxs(d, 'feed.tags', ACTION_APPEND, 'programming') # Append 'programming' to tags
jsonxs(d, 'feed.tags[1]', ACTION_INSERT, 'tech') # Insert 'tech' at pos 1 in tags
jsonxs(d, 'feed.author', ACTION_SET, 'Ferry Boender') # Create new key/string value in dict
jsonxs(d, 'feed.details', ACTION_MKDICT) # Create new key/dict value in dict
jsonxs(d, 'feed.details', ACTION_MKLIST) # Create new key/list value in dict
To install:
::
pip install jsonxs
To use:
::
import jsonxs
data = {'foo': 1}
jsonxs.jsonxs(data, 'bar', jsonxs.ACTION_SET, 2)
print data # {'foo': 1, 'bar': 2}
JSONxs is licensed under the MIT license:
Copyright (c) 2015 Ferry Boender (ferry.boender@gmail.com)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
Use path expression strings to get and set values in JSON
We found that jsonxs demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.