An ultra-lightweight package for validating single conditions.
Project description
1️⃣ OneCondition
An ultra-lightweight package for validating single conditions.
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
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file onecondition-1.1.14.tar.gz
.
File metadata
- Download URL: onecondition-1.1.14.tar.gz
- Upload date:
- Size: 19.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c1476176e1f0cd253ceaf399651f652c267ac7ceb3fd91a8b93af5d74f62f3de |
|
MD5 | 877772d190d09827520471feab9af4da |
|
BLAKE2b-256 | 8f4e899a357aaca78846b4753bd5319e9a156413ac59b50db20a51d1051572a7 |
File details
Details for the file onecondition-1.1.14-py3-none-any.whl
.
File metadata
- Download URL: onecondition-1.1.14-py3-none-any.whl
- Upload date:
- Size: 19.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d191dfb376d35179df351e3ff6eda691a75b1605dcd091e8a09c7f2a768e6379 |
|
MD5 | d78d69dcec358e5181751a131bb2ab0a |
|
BLAKE2b-256 | 0108436a597d4e9b3b30c63d82b387778b764e9bf479e4fcd2d15e4c3d88b42d |