llitz / json2xml

:neckbeard: Simple Python module to covert JSON to XML(Python 3.5+)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

About

Build Status

A Simple python utility to convert JSON to XML(Supports 3.5.x and 3.6.x). It can be used to convert a json file to xml or from an URL that returns json data.

How to install

pip3 install json2xml

Usage

Command Line

python -m src.cli --file="examples/example.json"
python -m src.cli --url="https://coderwall.com/vinitcool76.json"

Inline in Code

  • From a file
from src.json2xml import Json2xml
data = Json2xml.fromjsonfile('examples/example.json').data
data_object = Json2xml(data)
data_object.json2xml() #xml output
  • From an URL
from src.json2xml import Json2xml
data = Json2xml.fromurl('https://coderwall.com/vinitcool76.json').data
data_object = Json2xml(data)
data_object.json2xml() #xml output

Bugs, features

  • If you find any bug, open a new ticket
  • If you have an intresting Idea for contribution, open a ticket for that too and propose the idea. If we agree, you can open a pull request.

About

:neckbeard: Simple Python module to covert JSON to XML(Python 3.5+)


Languages

Language:Python 100.0%