Skip to main content

last price revision validation rules

Project description

Price Validation Engine

Overview

Price Validation Engine is framework to create skeleton to validate last price revision

requirements

  • python 3.6+
  • Linux, MacOS, windows

install

pip install price-val-engine

Start Project

python -m price_val_engine startproject project_name 

Project template structure

- base_dir
    - project_name 
        - __init__.py
        - settings.py
        - validtion_rules.py
    - run.py

Run project

python run.py --input=input.csv --output=output.csv 

input as s3 csv file

python run.py --input=s3://bucket_name/path/input.csv --output=s3://bucket_name/path/input.csv

settings.py

  • default validation pipeline

     VALIDATION_PIPELINES = [  
         'price_val_engine.core.validations.general_rules.NullNegativeZeroValidationRule',  
         'price_val_engine.core.validations.general_rules.OutOfRangeValidationRule',  
         'price_val_engine.core.validations.revision_rules.DeltaPercentageFromLastDayRule',  
     ]
    

Add new custom validation rule

- step 1 you can define your custom validtion rules in the file `project_name/validation_rules.py`

    class MyValidationRule(BaseRule)
        name = "validation_rules.myvalidation_rule"
        message = "price could not be gte {max_price}"
        severity = ''

        def is_valid(self, item):
            max_price = 50
            if item['price'] >= max_price:
                self.message.format(max_price)
                self.severity = 'HIGH' # you can define severity LOW, MEDIUM and HIGH

- step 2 add your newly defined rule in `setting.py`

    VALIDATION_PIPELINES = [  
        ...,
        'project_name.validation_rules.MyValidationRule
    ]

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

price-val-engine-0.1.9.dev1.tar.gz (13.4 kB view details)

Uploaded Source

Built Distribution

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

price_val_engine-0.1.9.dev1-py3-none-any.whl (18.7 kB view details)

Uploaded Python 3

File details

Details for the file price-val-engine-0.1.9.dev1.tar.gz.

File metadata

  • Download URL: price-val-engine-0.1.9.dev1.tar.gz
  • Upload date:
  • Size: 13.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.12

File hashes

Hashes for price-val-engine-0.1.9.dev1.tar.gz
Algorithm Hash digest
SHA256 6e4f8d3fdd3b08ba811320466fcb43a954b49cda4b65dcd199335e494095d639
MD5 e81e8798f2f0114a60830800f757bc4e
BLAKE2b-256 0a1d02ab22165ae82bf9a26cd39f74bcbd1778c434128f6a36045f3349865d14

See more details on using hashes here.

File details

Details for the file price_val_engine-0.1.9.dev1-py3-none-any.whl.

File metadata

File hashes

Hashes for price_val_engine-0.1.9.dev1-py3-none-any.whl
Algorithm Hash digest
SHA256 9e006d525d5cd234e75f63742bd998bfa9e140a2fbc60c34e56443c2cabacca5
MD5 aa2c9c12a29625250a5104df58a7d368
BLAKE2b-256 44c347edb6b042f3e8460bfed7d2d379046adcab37c956a02794d4f636abfa03

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