XSON: XML Encoding for JSON
Project description
XML Encoding for JSON
XSON is a Python package that supports the serialization of Python objects to XML documents according to the JSONx specification (draft), as well as the deserialization of JSONx documents to Python objects. The implementation aims at being API and CLI-compatible with Python’s standard JSON package.
Requirements
Python >= 3.9
Install
To use XSON in another project, it can be added to setup.cfg as an install requirement (if using setuptools with declarative config):
[options]
install_requires =
xson
To install XSON manually, e.g., into a virtual environment, use pip:
pip install xson
The above approaches install the latest release of XSON from PyPI. Alternatively, for the development version, clone the project and perform a local install:
pip install .
Usage
API
Example:
>>> import xson
>>> out = xson.dumps({'foo': 42, 'bar': [3.14, 'baz', True, None]}, indent=4)
>>> print(out) #doctest: +NORMALIZE_WHITESPACE
<?xml version="1.0" encoding="UTF-8"?>
<json:object xmlns:json="http://www.ibm.com/xmlns/prod/2009/jsonx">
<json:number name="foo">42</json:number>
<json:array name="bar">
<json:number>3.14</json:number>
<json:string>baz</json:string>
<json:boolean>true</json:boolean>
<json:null/>
</json:array>
</json:object>
>>> dct = xson.loads(out)
>>> print(dct)
{'foo': 42, 'bar': [3.14, 'baz', True, None]}
CLI
A command line tool is available to validate, pretty-print, or convert between JSONx and JSON objects:
xson-tool --help
or:
python -m xson.tool --help
Copyright and Licensing
Licensed under the BSD 3-Clause License.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file xson-1.1.1.tar.gz.
File metadata
- Download URL: xson-1.1.1.tar.gz
- Upload date:
- Size: 18.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
27ccb5a63eb35c04ecf9668bcd6c0980b9284231246e284a1ce40f5df8d318a4
|
|
| MD5 |
fe8169ba686bd8abd081ad4eada11354
|
|
| BLAKE2b-256 |
e0da3184f5f22ce5edbe7647d44ebc3e3aa9f4fd70447e09f38c199ca33ff051
|
File details
Details for the file xson-1.1.1-py3-none-any.whl.
File metadata
- Download URL: xson-1.1.1-py3-none-any.whl
- Upload date:
- Size: 9.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4c53a32c9379c58b4d69474e801e968dbafb010cb3dee393bc583896fe7e0383
|
|
| MD5 |
a4eb3fe594af375f0ac25c52d5c0f98a
|
|
| BLAKE2b-256 |
8981849af5bbadf53fc13c062000d71f0cc272b05ae53867fb794e255da948ab
|