Skip to main content

An ultra-lightweight package for validating single conditions.

Project description

1️⃣ OneCondition

An ultra-lightweight package for validating single conditions.

Python Version PyPI Version

GitHub Build Codecov Coverage Codacy Badge

License PyPI Downloads

Why?

Often when writing Python code, you will need to validate one or more conditions about a value, and raise an error if those conditions aren't valid. The most simple example is as follows:

def inverse(value):
    # Validate that the input is a positive number
    if not isinstance(value, (int, float)):
        raise ValueError("Value must be either an int or a float")
    if not value > 0:
        raise ValueError("Value must be positive (non-zero)")
    
    return 1 / value

This works for very simple cases, but what if we wanted to format more information into the error messages? What if we want a custom error type to represent specifically a validation error? What if we need to do 20, or 200 validations, instead of 2? You can start to see how quickly your boilerplate for validation could clutter up your code.

onecondition aims to solve this issue with a simple design philosophy:

You should only have to write one line of code in order to validate one condition.

(And that line should be less than 100 characters long.)

Usage

The most common usage of onecondition is to validate that the parameters passed to a function are valid. The validate submodule provides a large number of functions that allow validating many aspects about a value.

import onecondition as oc
import onecondition.validate

def inverse(value):
    # Validate that the input is a positive number
    oc.validate.instance(value, (int, float))
    oc.validate.positive(value)
    
    return 1 / value

Now, if you run something like inverse(4), you will get the expected output of 0.25.

However, running inverse(0) would give the following error:

Traceback (most recent call last):
    ...
onecondition.ValidationError: Value `0` must be positive (non-zero)

Similarly, running inverse("foobar") would result in the following:

Traceback (most recent call last):
    ...
onecondition.ValidationError: Value `'foobar'` must be an instance of (<class 'int'>, <class 'float'>), not a <class 'str'>

Isn't that much nicer than writing all that code yourself?

Full Documentation

onecondition on Read the Docs

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

onecondition-1.1.15.tar.gz (19.2 kB view details)

Uploaded Source

Built Distribution

onecondition-1.1.15-py3-none-any.whl (19.2 kB view details)

Uploaded Python 3

File details

Details for the file onecondition-1.1.15.tar.gz.

File metadata

  • Download URL: onecondition-1.1.15.tar.gz
  • Upload date:
  • Size: 19.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for onecondition-1.1.15.tar.gz
Algorithm Hash digest
SHA256 9fe7ca8e9eb1be399ea7c8820afb896bfd0ad9778aeb893bcf8a95428cd24f34
MD5 c60e42a809e67b6b97d9b6fbef596b35
BLAKE2b-256 062459aa3de5faebd925f539b476ed329bc638a51ccd65729a82318629eea41d

See more details on using hashes here.

File details

Details for the file onecondition-1.1.15-py3-none-any.whl.

File metadata

File hashes

Hashes for onecondition-1.1.15-py3-none-any.whl
Algorithm Hash digest
SHA256 73f8cceba75587321129dba146e626d838d5de480c628cdb500e5ed63488f1ef
MD5 71bcd9f31eac138d53b6f62056c1f851
BLAKE2b-256 1e5046ea48b8b76c2331100ed4b7f048b099581621741354e11aaf305cb1b3f4

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