GithubHelp home page GithubHelp logo

deftio / jsonvice Goto Github PK

View Code? Open in Web Editor NEW
2.0 1.0 0.0 72 KB

json minifier with ability to truncate precision of floating point numbers

License: Other

Python 100.00%
python command-line json minification quantization minifiers truncation quantizer

jsonvice's Introduction

PyPI version Build Status License

About jsonvice

jsonvice is command line tool for minifying JSON with optimal precision truncation/rounding. In many applications floating point values in JSON can be very long (15 digits or more) but this level of accuracy isn't needed and takes up much space.

jsonvice allows the truncation of all the embedded floating point numbers (wherever they appear) to a specified number of digits.

It also removes unnecessary white space to minify JSON files.

sample_input.json

{
    "x" :   12.32,
    "y": 0.23482498323433,
    "z": "simple test",
    "a" : [ 1, 2, 3.23423434343 ]
}

now run jsonvice

jsonvice -i input.json -o output.json -p 4

ouput.json

{"x":12.32,"y":0.2348,"z":"simple test","a":[1,2,3.2342]}

More Examples

compactify json and reduce floating point precision to max of 5 digits by rounding

jsonvice -i sample_input.json -o output.json -p 5

compactify json and reduce floating point precision to max of 5 digits by rounding down

jsonvice -i myfile.json -o output.json -p 5 -q floor

jsonvice also allows stdin / stdout pipes to be used

cat simple_test.json | python3 path/to/jsonvice.py -i - -o - > output_test.json

jsonvice can also beautify (pretty print) json, while still performing precision truncation. Note this makes the file larger.

jsonvice -i myfile.json -o output.json -p 3 -b

Building and Source

All source is at jsonvice

jsonvice is built with Python using the Poetry packaging and build tool.

pip3 install poetry # if not installed.

poetry update poetry install poetry build

poetry run jsonvice ...parameters...

Example

poetry run jsonvice -i inputfile.json -o outputfile.json -p 4

Installing as stand alone commandline tool

pip can be used into install jsonvice as stand alone tool (note python 3.6 should or later specified)

pip install jsonvice

pipx install

pipx can be used to install a stand alone version of jsonvice as a command line tool. Note pipx is like pip or pip3 but installs programs with their own virtual environment.

pipx install jsonvice

or install from github repo

pipx install git+https://github.com/deftio/jsonvice

Now you can use jsonvice at the commandline without typing python3 like this example:

jsonvice -i inputfile.json -o - -b

Python version support

Python version 3.6 or higher is required to build jsonvice. If pipx is used for install isolation takes place automatically.

Testing

Both pytest and tox were used to build jsonvice. Testing can be performed at the command line via either tool:

poetry run pytest

or

tox

History & Motivation

json vice started as a script to compactify / minify some large machine learning model files which had large floating point numbers. By rounding to fixed number of sig digits and then testing the models against testsuites to see the effects of truncation.

At the time couldn't find a tool and whipped up small script (the original script is in /dev directory).

So jsonvice was built to learn / test practices around the python poetry and pipx tools, for use in other projects, but starting with a small example cli program that already worked.

License

jsonvice uses the BSD-2 open source license

jsonvice's People

Contributors

deftio avatar

Stargazers

 avatar  avatar

Watchers

 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.