Skip to main content

Validation Framework for Python3

A quick example

A registration form accepts this data structure:

valid_test_data = {
    'email': 'test@example.com',
    'pw': 'password123',
    'name': 'Test Username',
    'birth_year': 1984
}

The validation process can be:

import gladiator as gl

registration_form_validator = (
    ('email', gl.required, gl.format_email),
    ('pw', gl.required, gl.length_min(5)),
    ('name', gl.required, gl.type_(str)),
    ('birth_year', gl.required, gl.type_(int), gl.value_max(2014 - 18))
)

result = gl.validate(registration_form_validator, valid_test_data)
assert result.success is True

Download files

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

Source Distribution

Gladiator-0.6.4.tar.gz (6.2 kB view details)

Uploaded Source

File details

Details for the file Gladiator-0.6.4.tar.gz.

File metadata

  • Download URL: Gladiator-0.6.4.tar.gz
  • Upload date:
  • Size: 6.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for Gladiator-0.6.4.tar.gz
Algorithm Hash digest
SHA256 43c5efc3f22e6a818643e009fc8b84754fddd605290f03938670f9f605a5351a
MD5 51cf1d3705a9ef10540a90a2abf89478
BLAKE2b-256 47519d8b9786945104e5834bae97b3aeac205ca03fc742921625f1c0397b0818

See more details on using hashes here.

Release history Release notifications | RSS feed

0.7.0

1 file

0.6.9

1 file

0.6.8

1 file

0.6.7

1 file

0.6.6

1 file

0.6.5

1 file

This release

0.6.4 This release

1 file

0.6.3

1 file

0.6.2

1 file

0.6.1

1 file

0.6

1 file

0.5

1 file

Supported by

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