Giter VIP home page Giter VIP logo

pyjsonviewer's Introduction

PyJSONViewer

A JSON file data viewer using pure python

Downloads Downloads Downloads

Gallery

  • Mac OS

img1

  • Windows10

img1

  • Ubuntu

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

  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.

Menu bar function

  • Expand all items: Tools -> Expand all

  • Collapse all items: Tools -> Collapse all

  • Show version: Help -> About

  • Show github page: Help -> GitHub page

  • Show release note: Help -> Release note

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()

Open a link with a brower

If a URL is included in a json file,

you can open it with a browser with double click the URL.

License

MIT

Author

pyjsonviewer's People

Contributors

atsushisakai avatar atsushi-sakai avatar bertdida avatar dskkato avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.