Skip to main content

A fast, simple parser for terribly broken JSON

Project description

JSOM - not quite JSON, but close enough

jsom is a simple and quick Python 3.7+ parser for terribly broken JSON.

Installation

$ pip install jsom

Usage

jsom works like this:

>>> import jsom
>>> broken_json = "{\"foo\": {bar: 1, 'baz':,}, bar: 1, baz: [1,2,3,],}")
>>> jsom.JsomParser(ignore_warnings=jsom.ALL_WARNINGS).loads(broken_json)
{'foo': {'bar': 1, 'baz': None}, 'bar': 1, 'baz': [1, 2, 3]}

jsom happily gobbles up the following:

  • unquoted keys and values
  • single-quoted strings
  • trailing commas
  • empty values in objects

By default, it will warn you whenever it sees one of those, but still parse it.

It also doesn't give a shit about:

  • Newlines in strings
  • Stray backslashes

You will never get warned about those. ¯\_(ツ)_/¯

Warnings are annoying, though, and to make matters worse, they slow the parser down - so just pass in the list of warnings you want jsom to be quiet about in the ignore_warnings parameter:

parser = JsomParser(
    ignore_warnings=[jsom.SINGLE_QUOTED_STRING, jsom.EMPTY_OBJECT_VALUE]
)

Or, if you prefer, just tell it to shut up completely, by passing in jsom.ALL_WARNINGS.

LICENSE

jsom is distributed under the terms of the Do What The Fuck You Want To Public License (WTFPL):

        DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE 
                    Version 2, December 2004 

 Copyright (C) 2004 Sam Hocevar <sam@hocevar.net> 

 Everyone is permitted to copy and distribute verbatim or modified 
 copies of this license document, and changing it is allowed as long 
 as the name is changed. 

            DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE 
   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 

  0. You just DO WHAT THE FUCK YOU WANT TO.

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

jsom-0.0.5.tar.gz (7.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

jsom-0.0.5-py3-none-any.whl (8.8 kB view details)

Uploaded Python 3

File details

Details for the file jsom-0.0.5.tar.gz.

File metadata

  • Download URL: jsom-0.0.5.tar.gz
  • Upload date:
  • Size: 7.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.2

File hashes

Hashes for jsom-0.0.5.tar.gz
Algorithm Hash digest
SHA256 284d75e501c464e52157f7d9b00cfea72bdcf6b697eb8e7dc010cb65ee2d504f
MD5 4c10ca725bbdfffc51d8cb7811f8f4e4
BLAKE2b-256 3e7eb7ece3aa62331115334b26a6a5d9c7b441d8afb37f5f4591127ead425b7e

See more details on using hashes here.

File details

Details for the file jsom-0.0.5-py3-none-any.whl.

File metadata

  • Download URL: jsom-0.0.5-py3-none-any.whl
  • Upload date:
  • Size: 8.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.2

File hashes

Hashes for jsom-0.0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 f50eb5bb9a2934e4abc6b392dc23dc2fb6532e4852d4f3664e9d6187e10bc5d0
MD5 2cf0698f3085e4f94e5ba22c3018d00e
BLAKE2b-256 19a29c993b4de16db99a0c65437db60d02abf072cbdb64b0a87ecb0d6829f55c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page