Skip to main content

A JSON file data viewer using pure python

Project description

PyJSONViewer

A JSON file data viewer using pure python

  • Mac OS

img1

img1

  • Windows10

img1

img1

  • Ubuntu

img1

img1

What is this?

This is a JSON file data viewer based on python.

It only uses built-in libraries of python (tkinter, json).

Features:

  1. Minimum dependency.

  2. Multi-platform (Mac, Windows, Linux).

  3. Easy to use.

Requirements

  • Python 3.6.x or higher

Download

$ pip install PyJSONViewer

or download as zip.

How to use

Bash alias setting

If you add this alias settting in your .bashrc

alias pyjsonviewer=‘python -m pyjsonviewer’

you can use this tool with just typing “pyjsonviewer” in your bash.

Select JSON file with CUI.

  1. Run pyjsonviewer with -f option and the path to a JSON file:

$ pyjsonviewer -f path_to_json_file/sample.json

  1. JSON data tree will be shown.

Select JSON file with GUI.

  1. Run pyjsonviewer

$ pyjsonviewer

  1. File->Open and then select json file.

  2. JSON data tree will be shown.

You can set initial directory:

$ pyjsonviewer -d path_to_json_file_dir

Select JSON file from history.

  1. Run pyjsonviewer.py

  2. File->“Open from history” and then double click a json file path from the list.

img1

img1

  1. JSON data tree will be shown.

Select JSON file with drag and drop.

  1. Run pyjsonviewer.py with the option -o

$ python pyjsonviewer.py -o path_to_json_file_dir

  1. File browser is shown.

  2. You can drag and drop a JSON file to the file browser.

Vimrc setting

If you are a vim user, you can set this command in your vimrc.

"JSON format
function! JsonFormat()
    %!python -m json.tool
endfunction
command! JsonFormat :call JsonFormat()

"JSON viewer
function! JsonViewer()
    "%!python -m pyjsonviewer -f % > /dev/null
    let filename = expand('%')
    let s:job = job_start(
    \   ["/bin/sh", "-c", "python -m pyjsonviewer -f".filename],{})
endfunction
command! JsonViewer :call JsonViewer()

When you are editing a json file with vim,

you can open it using PyJSONViewer with

: JSONViewer()

You can also format json file with

: JSONFormat()

License

MIT

Author

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

PyJSONViewer-1.3.2.tar.gz (45.3 kB view details)

Uploaded Source

File details

Details for the file PyJSONViewer-1.3.2.tar.gz.

File metadata

  • Download URL: PyJSONViewer-1.3.2.tar.gz
  • Upload date:
  • Size: 45.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for PyJSONViewer-1.3.2.tar.gz
Algorithm Hash digest
SHA256 51da0080093b1010ce389f55fe351e02dfe97899228122b54d4e3da716265e02
MD5 702ba610c7830e1f58e4c50d251777bc
BLAKE2b-256 d2dbd51d0ffabc8b8d25ac019916b05e9e59e343441ade9b0b2d531fe347c5b5

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