Skip to main content

A package to parse out C/JS style block and single line comments from JSON files.

Project description

jsonjsc

CI - Test CI - Build PyPI - Version PyPI - Python Version

A Python library for parsing out C/Javascript style comments in JSON files.

Install

pip install jsonjsc

Features

  • Simple and easy to use library with no other dependencies.
  • Supports C/JS block (/* */) and single line (//) comments.
  • Retains the line number and character column of JSON content after parsing, letting syntax error positions get properly reported by the normal Python JSON decoder.
  • Is easily dropped into existing JSON library usage as a decoder class.
  • Test backed via unittest.

Python 2

jsonjsc v1.1.2 is the last version to support Python 2.7.

pip install jsonjsc==1.1.2

Example

import json
import jsonjsc

TEST_JSON_DECODER = r'''{
    /*
    This is a test of the JSON decoder in full
    */
    "test1": "message1", // this comment should parse out.

    // "junk1": "message",

    /*
    "junk2": "another message",
    */

    "test2": "message2"
}'''

test = json.loads(TEST_JSON_DECODER, cls=jsonjsc.JSONCommentDecoder)

print(test["test1"])

if "junk1" not in test:
    print("I guess junk1 was commented out?")

if "junk2" not in test:
    print("I guess junk2 was commented out too!")

print(test["test2"])

Development

jsonjsc uses Hatchling as a build backend and flake8 as a style guide.

$ pip install -e .

Hatch is the primary project manager of choice, but any project adhering to PEP 621 (pyproject.toml specification) can be used.

$ hatch shell

Tests

Tests can be ran with pytest. Hatch scripts are included for linting and testing.

# Lint
$ hatch run lint:all

# Test with current Python version
$ hatch run full
# Test with all Python versions
$ hatch run test:full

TODOs

Implementation could probably be sped up significantly as it uses character by character searches to test if comments are in string values or not. No performance metrics have been taken.

License

Licensed under the MIT License. See LICENSE for more information.

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

jsonjsc-1.2.0.tar.gz (5.9 kB view hashes)

Uploaded Source

Built Distribution

jsonjsc-1.2.0-py3-none-any.whl (4.2 kB view hashes)

Uploaded Python 3

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