Skip to main content

Quick schema validator.

Project description

Installing

pip3 install shucks

Simple Usage

Validating a login form that accepting email or phone and a password.

import shucks
import math

schema = shucks.And(
  dict,
  {
    'id': shucks.If(
      shucks.And(str, lambda v: '@' in v),
      shucks.Con(
        lambda v: v.split('@', 1)[1],
        shucks.contain({'gmail.com', 'hotmail.com', 'yahoo.com'})
      ),
      shucks.And(
        shucks.Or(str, int),
        shucks.Con(str, shucks.Con(len, shucks.range(10, 10)))
      )
    ),
    'password': shucks.And(
      str,
      shucks.Con(len, shucks.And(shucks.range(8, math.inf))),
      shucks.wrap(lambda v: not 'logo' in v, 'logo')
    ),
    shucks.Opt('remember'): bool
  }
)

data = {
  'id': 1234567890
  'password': 'logo1234'
}

shucks.check(schema, data)

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

shucks-1.0.2.tar.gz (5.8 kB view hashes)

Uploaded Source

Built Distribution

shucks-1.0.2-py3-none-any.whl (8.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