Skip to main content

Python parsing, evaluation and inspection tools for jQuery-QueryBuilder rules

Project description

jQueryQueryBuilder

Python Rule evaluator for jQuery-QueryBuilder. It evaluates rules agains provided objects.

WebsiteautobotAI Cloud Governance

Inspired from SixiS/jquery_query_builder-rails

Usage

Install the package.

pip install jqqb

Usage Example:

from jqqb import QueryBuilder
rule_json = {
    "condition": "AND",
    "rules": [{
        "id": "tagname",
        "field": "tags.name",
        "type": "string",
        "input": "text",
        "operator": "not_contains",
        "value": "production"
    }, {
        "id": "tagname",
        "field": "tags.name",
        "type": "string",
        "input": "text",
        "operator": "begins_with",
        "value": "development"
    }, {
        "condition": "OR",
        "rules": [{
            "id": "type",
            "field": "type",
            "type": "string",
            "input": "text",
            "operator": "equal",
            "value": "ec2"
        },{
            "id": "type",
            "field": "type",
            "type": "string",
            "input": "text",
            "operator": "equal",
            "value": "ami"
        }]
    }]
}


evaluator = QueryBuilder(rule_json)
object_1 = {'type': "ec2", "tags": [{"name": "hello"}, {"name": "asdfasfproduction_instance"}]}
object_2 = {'type': "ami", "tags": [{"name": "development"}, {"name": "asfdafdroduction_instance"}, {"name": "proction"}]}
objects = [object_1, object_2]

print(evaluator.match_objects(objects))
print(evaluator.inspect_objects(objects))

Result:

[{'type': 'ami', 'tags': [{'name': 'development'}, {'name': 'asfdafdroduction_instance'}, {'name': 'proction'}]}]

[
    {
        'object': {'type': 'ec2', 'tags': [{'name': 'hello'}, {'name': 'asdfasfproduction_instance'}]}, 
        'selected': False, 
        'results': [
            (
                {'id': 'tagname', 'field': 'tags.name', 'type': 'string', 'input': 'text', 'operator': 'not_contains', 'value': 'production'}, 
                (['hello', 'asdfasfproduction_instance'], 'production', False)
            ), 
            (
                {'id': 'tagname', 'field': 'tags.name', 'type': 'string', 'input': 'text', 'operator': 'begins_with', 'value': 'development'}, 
                (['hello', 'asdfasfproduction_instance'], 'development', False)
            ), 
            (
                {
                    'condition': 'OR', 
                    'rules': [
                        {
                            'id': 'type', 
                            'field': 'type', 
                            'type': 'string', 
                            'input': 'text', 
                            'operator': 'equal', 
                            'value': 'ec2'
                        }, {
                            'id': 'type', 
                            'field': 'type', 
                            'type': 'string', 
                            'input': 'text', 
                            'operator': 'equal', 
                            'value': 'ami'
                        }
                    ]
                }, 
                [
                    (
                        {'id': 'type', 'field': 'type', 'type': 'string', 'input': 'text', 'operator': 'equal', 'value': 'ec2'}, 
                        ('ec2', 'ec2', True)
                    ), 
                    (
                        {'id': 'type', 'field': 'type', 'type': 'string', 'input': 'text', 'operator': 'equal', 'value': 'ami'}, 
                        ('ec2', 'ami', False)
                    )
                ]
            )
        ]
    }, 
    {
        'object': {'type': 'ami', 'tags': [{'name': 'development'}, {'name': 'asfdafdroduction_instance'}, {'name': 'proction'}]}, 
        'selected': True, 
        'results': [
            (
                {'id': 'tagname', 'field': 'tags.name', 'type': 'string', 'input': 'text', 'operator': 'not_contains', 'value': 'production'}, 
                (
                    ['development', 'asfdafdroduction_instance', 'proction'], 'production', True
                )
            ), (
                {'id': 'tagname', 'field': 'tags.name', 'type': 'string', 'input': 'text', 'operator': 'begins_with', 'value': 'development'}, 
                (
                    ['development', 'asfdafdroduction_instance', 'proction'], 'development', True
                )
            ), (
                {
                    'condition': 'OR', 
                    'rules': [
                        {'id': 'type', 'field': 'type', 'type': 'string', 'input': 'text', 'operator': 'equal', 'value': 'ec2'}, 
                        {'id': 'type', 'field': 'type', 'type': 'string', 'input': 'text', 'operator': 'equal', 'value': 'ami'}
                    ]
                }, [
                    (
                        {'id': 'type', 'field': 'type', 'type': 'string', 'input': 'text', 'operator': 'equal', 'value': 'ec2'}, 
                        ('ami', 'ec2', False)
                    ), (
                        {'id': 'type', 'field': 'type', 'type': 'string', 'input': 'text', 'operator': 'equal', 'value': 'ami'}, 
                        ('ami', 'ami', True)
                    )
                ]
            )
        ]
    }
]

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

jqqb-0.0.3.tar.gz (5.3 kB view details)

Uploaded Source

Built Distribution

jqqb-0.0.3-py3-none-any.whl (5.6 kB view details)

Uploaded Python 3

File details

Details for the file jqqb-0.0.3.tar.gz.

File metadata

  • Download URL: jqqb-0.0.3.tar.gz
  • Upload date:
  • Size: 5.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.8.10

File hashes

Hashes for jqqb-0.0.3.tar.gz
Algorithm Hash digest
SHA256 e0b3ceda9f93943eb31492ba41126c016cbf9c1e2f1edaeed272e0faa7965ee7
MD5 a91f8f0fa4e3f3d3d296da2a59ec3609
BLAKE2b-256 372c1d3f1e62b9dc6fe22a6849a52a063167aa4c492e991d0958b3c4013a079f

See more details on using hashes here.

File details

Details for the file jqqb-0.0.3-py3-none-any.whl.

File metadata

  • Download URL: jqqb-0.0.3-py3-none-any.whl
  • Upload date:
  • Size: 5.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.8.10

File hashes

Hashes for jqqb-0.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 79b726e5c172154f90585e20da440ff9b0ad56cf0b1cb401eb12df729b5b3ce8
MD5 60f961fc5e047a9bf319b42e4bd68fbf
BLAKE2b-256 2d5c67845cb7fd4479c1102080a019df9f5da036dba82482c06cb8cfb227b846

See more details on using hashes here.

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