Skip to main content

This parser accepts JsonLogic rules and executes them in Python.

This is a fork of json-logic-py by nadir.izr, which is a Python porting of the GitHub project by jwadhams for JavaScript: json-logic-js.

The JsonLogic format is designed to allow you to share rules (logic) between front-end and back-end code (regardless of language difference), even to store logic along with a record in a database. JsonLogic is documented extensively at JsonLogic.com, including examples of every supported operation and a place to try out rules in your browser.

The same format can also be executed in PHP by the library json-logic-php

Examples

Simple

from json_logic import jsonLogic
jsonLogic( { "==" : [1, 1] } )
# True

This is a simple test, equivalent to 1 == 1. A few things about the format:

  1. The operator is always in the “key” position. There is only one key per JsonLogic rule.

  2. The values are typically an array.

  3. Each value can be a string, number, boolean, array (non-associative), or null

Compound

Here we’re beginning to nest rules.

jsonLogic(
  {"and" : [
    { ">" : [3,1] },
    { "<" : [1,3] }
  ] }
)
# True

In an infix language (like Python) this could be written as:

( (3 > 1) and (1 < 3) )

Data-Driven

Obviously these rules aren’t very interesting if they can only take static literal data. Typically jsonLogic will be called with a rule object and a data object. You can use the var operator to get attributes of the data object:

jsonLogic(
  { "var" : ["a"] }, # Rule
  { a : 1, b : 2 }   # Data
)
# 1

If you like, we support syntactic sugar on unary operators to skip the array around values:

jsonLogic(
  { "var" : "a" },
  { a : 1, b : 2 }
)
# 1

You can also use the var operator to access an array by numeric index:

jsonLogic(
  {"var" : 1 },
  [ "apple", "banana", "carrot" ]
)
# "banana"

Here’s a complex rule that mixes literals and data. The pie isn’t ready to eat unless it’s cooler than 110 degrees, and filled with apples.

rules = { "and" : [
  {"<" : [ { "var" : "temp" }, 110 ]},
  {"==" : [ { "var" : "pie.filling" }, "apple" ] }
] }

data = { "temp" : 100, "pie" : { "filling" : "apple" } }

jsonLogic(rules, data)
# True

Dates

You can use the date operator to include dates in the json logic. The dates are internally converted to datetime.date objects, and then the comparison is performed.

rule = {"<=": [{"date": {"var": "testDate"}}, {"date": "2021-01-01"}]}
data = {"testDate": "2020-01-01"}

jsonLogic(rule, data)
# True

The operator {"today": []} gets the current date. It is also possible to add/subtract years to a date. This makes use of relativedelta from dateutils.

rule = {"-": [{"date": "2021-01-01"}, {"years": 18}]}

jsonLogic(rule)
# date(2003, 1, 1)

Datetimes

You can use the datetime operator to include datetimes in the json logic. The datetimes are internally converted to datetime.datetime objects, and then the comparison is performed.

rule = {
    "<=": [
        {"datetime": {"var": "testDatetime"}},
        {"datetime": "2022-12-01T10:00:00.000+02:00"},
    ]
}
data = {"testDatetime": "2022-11-01T10:00:00.000+02:00"}

jsonLogic(rule, data)
# True

Always and Never

Sometimes the rule you want to process is “Always” or “Never.” If the first parameter passed to jsonLogic is a non-object, non-associative-array, it is returned immediately.

#Always
jsonLogic(True, data_will_be_ignored);
# True

#Never
jsonLogic(False, i_wasnt_even_supposed_to_be_here);
# False

Installation

The best way to install this library is via PIP:

pip install json-logic

If that doesn’t suit you, and you want to manage updates yourself, the entire library is self-contained in json_logic.py and you can download it straight into your project as you see fit.

curl -O https://raw.githubusercontent.com/nadirizr/json-logic-py/master/json_logic.py

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

maykin_json_logic_py-0.16.0.tar.gz (20.4 kB view details)

Uploaded Source

Built Distribution

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

maykin_json_logic_py-0.16.0-py3-none-any.whl (12.0 kB view details)

Uploaded Python 3

File details

Details for the file maykin_json_logic_py-0.16.0.tar.gz.

File metadata

  • Download URL: maykin_json_logic_py-0.16.0.tar.gz
  • Upload date:
  • Size: 20.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for maykin_json_logic_py-0.16.0.tar.gz
Algorithm Hash digest
SHA256 ec49c1264e5e668e257f7679025f5dc80c79a5acf557fca3658800068da96f6b
MD5 5468da84a88ff3094701bc53a388f58e
BLAKE2b-256 7dc6debf77e89a4614c22ee6c411d8955cffa8d7dc65d9a3a0bb33ca963e927f

See more details on using hashes here.

Provenance

The following attestation bundles were made for maykin_json_logic_py-0.16.0.tar.gz:

Publisher: ci.yml on maykinmedia/json-logic-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file maykin_json_logic_py-0.16.0-py3-none-any.whl.

File metadata

File hashes

Hashes for maykin_json_logic_py-0.16.0-py3-none-any.whl
Algorithm Hash digest
SHA256 0bc43aedf1724dba9faf795fbe043695b0e0bb194cde3588ff11c72e3ef23b43
MD5 a47170d56811c75a8194b1fa29af027f
BLAKE2b-256 e42a855e9afa71c4647dc0f819f169006bc66b5b703bb8107c0ac36201717d71

See more details on using hashes here.

Provenance

The following attestation bundles were made for maykin_json_logic_py-0.16.0-py3-none-any.whl:

Publisher: ci.yml on maykinmedia/json-logic-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.16.0 This release

2 files

0.15.0

2 files

0.14.0

2 files

0.13.0

2 files

0.12.0

2 files

0.11.0

2 files

0.10.0

2 files

0.9.0

2 files

Supported by

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