Skip to main content

Simple Python Library to convert JSON to XML

Project description

json2xml

https://img.shields.io/pypi/v/json2xml.svg https://img.shields.io/travis/vinitkumar/json2xml.svg Documentation Status Updates https://coveralls.io/repos/github/vinitkumar/json2xml/badge.svg?branch=master

Simple Python Library to convert JSON to XML

Update

The dict2xml project has been forked and integrated in the project itself. This helped with cleaning up the code and also doing improvements. The goal is to remove all the dependencies from this project.

Features

It lets you convert json to xml in following ways:

  • from a json string

  • from a json file

  • from an API that emits json data

Usage

The usage is simple:

from json2xml import json2xml
from json2xml.utils import readfromurl, readfromstring, readfromjson

# get the xml from an URL that return json
data = readfromurl("https://coderwall.com/vinitcool76.json")
print(json2xml.Json2xml(data).to_xml())

# get the xml from a json string
data = readfromstring(
    '{"login":"mojombo","id":1,"avatar_url":"https://avatars0.githubusercontent.com/u/1?v=4"}'
)
print(json2xml.Json2xml(data).to_xml())

# get the data from an URL
data = readfromjson("examples/licht.json")
print(json2xml.Json2xml(data).to_xml())

Custom Wrappers and indent

By default, a wrapper all and pretty True is set. However, you can change this easily in your code like this:

from json2xml import json2xml
from json2xml.utils import readfromurl, readfromstring, readfromjson
data = readfromstring(
    '{"login":"mojombo","id":1,"avatar_url":"https://avatars0.githubusercontent.com/u/1?v=4"}'
)
print(json2xml.Json2xml(data, wrapper="all", pretty=True).to_xml())

Outputs this:

<?xml version="1.0" ?>
<all>
  <login type="str">mojombo</login>
  <id type="int">1</id>
  <avatar_url type="str">https://avatars0.githubusercontent.com/u/1?v=4</avatar_url>
</all>

Omit List item

By default, items in an array are wrapped in <item></item>. However, you can change this easily in your code like this:

from json2xml import json2xml
from json2xml.utils import readfromurl, readfromstring, readfromjson
data = readfromstring(
    '{"my_items":[{"my_item":{"id":1} },{"my_item":{"id":2} }]}'
)
print(json2xml.Json2xml(data, item_wrap=False).to_xml())

Outputs this:

<?xml version="1.0" ?>
<all>
  <my_items type="list">
    <my_item>
        <id type="int">1</id>
    </my_item>
    <my_item>
        <id type="int">2</id>
    </my_item>
  </list>
</all>

Optional Attribute Type Support

Now, we can also specify if the output xml needs to have type specified or not. Here is the usage:

from json2xml import json2xml
from json2xml.utils import readfromurl, readfromstring, readfromjson
data = readfromstring(
    '{"login":"mojombo","id":1,"avatar_url":"https://avatars0.githubusercontent.com/u/1?v=4"}'
)
print(json2xml.Json2xml(data, wrapper="all", pretty=True, attr_type=False).to_xml())

Outputs this:

<?xml version="1.0" ?>
<all>
  <login>mojombo</login>
  <id>1</id>
  <avatar_url>https://avatars0.githubusercontent.com/u/1?v=4</avatar_url>
</all>

The methods are simple and easy to use and there are also checks inside of code to exit cleanly in case any of the input(file, string or API URL) returns invalid JSON.

Credits

This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.

History

v3.8.0 / 2021-10-07

  • Feat/security improvements (#81)

  • arrow_up:

    feat: python 3.10 released (#79)

v3.7.0 / 2021-09-11

  • bookmark:

    feat: final release for v3.7.0

  • bookmark:

    feat: bump version

v3.7.0beta2 / 2021-09-10

  • Feat/cleanup and deprecation fix (#78)

  • item ommision (#76)

  • Create FUNDING.yml

v3.7.0beta1 / 2021-08-28

  • Feat/fork and update dict2xml (#75)

  • chore(deps-dev): bump pip from 18.1 to 19.2 (#73)

  • Delete .travis.yml

  • chore(deps-dev): bump lxml from 4.6.2 to 4.6.3 (#68)

  • Bump lxml from 4.1.1 to 4.6.2 (#66)

v3.6.0 / 2020-11-12

  • Feat/wip exceptions (#65)

  • Add .deepsource.toml

  • feat: upgrade the actions

  • feat: try & support more os and python versions

  • Update pythonpackage.yml

v3.5.0 / 2020-08-24

  • feat: remove six as dependency as we are python3 only, resolves #60 (#61)

  • feat: update makefile for the correct command

v3.4.1 / 2020-06-10

  • fix: issues with pypi release and bump version

  • Feat/attr type docs (#58)

  • fix: conflicts

  • Feat/attr type docs (#57)

  • Merge github.com:vinitkumar/json2xml

  • Update json2xml.py (#56)

  • Merge github.com:vinitkumar/json2xml

  • feat: fix typo in the readme

v3.3.3 / 2020-02-05

  • Update README.rst

  • fix: issue with pypi uploads

  • fix: version

  • bump version

  • Update pythonpackage.yml

  • Refactor/prospector cleanup (#50)

  • Update pythonpackage.yml

  • Create pythonpackage.yml

  • Update README.rst

  • fix: typo in readme

  • bump version

  • Feature/attribute support (#48)

  • Feature/attribute support (#47)

  • chore: bump version

  • fix: remove print statement in json read because it confuses people

  • fix typo in readme

v3.0.0 / 2019-02-26

  • Fix/coveralls (#43)

  • update coverage report (#42)

  • Merge pull request #41 from vinitkumar/fix/coveralls

  • add python coveralls

  • Merge pull request #40 from vinitkumar/refactor/cookiecutter

  • update coverage

  • add image for coveralls

  • coverage and coveralls integrations

  • try and trigger coveralls too

  • fix code block in readme

  • add doc about custom wrapper

  • try at reducing the dependencies

  • add tests for custom wrappers as well

  • add tests for actualy dict2xml conversion

  • fix: remove missing import

  • fix: code syntax highlight in the readme again

  • fix: code syntax highlight in the readme again

  • fix: code syntax highlight in the readme

  • chore: update readme with code samples

  • test: add testcases for the different utils method

  • remove unused imports

  • check the third method for generating dict from json string too

  • run correct test files

  • fix tests

  • update requirements and setuptools

  • refactor the module into more maintainable code

  • chore: add boilerplate

  • remove all legacy

  • Fix/cleanup (#38)

  • cleanup: remove unused modules (#37)

  • Merge pull request #35 from vinitkumar/improve-structure

  • cleanup

  • one again try to get the build working

  • travis need full version for latest supported python

  • do not hardcode version in a series

  • update grammar

  • fix conflicts

  • Update LICENSE

  • cleanup readme

  • remove cli

  • some cleanup and update the tests

  • Update readme.md

  • Cleanup Readme.md

  • Update issue templates

  • fix vulnerabilities in requests

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

json2xml-3.8.1.tar.gz (18.9 kB view details)

Uploaded Source

Built Distribution

json2xml-3.8.1-py2.py3-none-any.whl (9.7 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file json2xml-3.8.1.tar.gz.

File metadata

  • Download URL: json2xml-3.8.1.tar.gz
  • Upload date:
  • Size: 18.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for json2xml-3.8.1.tar.gz
Algorithm Hash digest
SHA256 81a302333e5c7f7d22d254910402dc3a05c3b83c42e909bd00b5f9b99b536608
MD5 de4a226fe1c34e1113ea29eae2076feb
BLAKE2b-256 8904111ecfc609a3eb2dfe26eb3070648cf0eee63c0062292b1b6f87af840ed2

See more details on using hashes here.

File details

Details for the file json2xml-3.8.1-py2.py3-none-any.whl.

File metadata

  • Download URL: json2xml-3.8.1-py2.py3-none-any.whl
  • Upload date:
  • Size: 9.7 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for json2xml-3.8.1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 b21428760b63e193852382e06e793675932713dd97e0dc08fdd90da1d0786273
MD5 08f0a3b8792e2899cffcab9947d9acba
BLAKE2b-256 5d03b20a467473763a5e436ddb2c6fca6ec96a2b4df1b75907a5e50d2349fed0

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page