A library for validating data at the edges of data systems.
Project description
Horkos
A library for validating data at the edges of data systems.
Install
pip install horkos
Documentation
Detailed documentation can be found on Read the Docs.
Usage
First define the data schema:
# http-requests-schema.yaml
name: "http_requests"
description: >-
This is the http request event data set, it is all about http requests we
receive. It's important to include as much information about it
as is reasonable. The hardest thing about data is understanding it after
the fact.
fields:
path:
type: string
description: >-
The path of the url that was hit. This will be everything after the
host portion of the url.
params:
type: string
nullable: true
checks:
- json
description: >-
The parameters of the http request. If the method is a `GET` these come
from the url otherwise they are the JSON from the request body.
method:
type: string
checks:
- name: choice
args:
options:
- DELETE
- GET
- HEAD
- OPTIONS
- PATCH
- POST
- PUT
description: >-
The http method of the request. Must be one of:
`DELETE`, `GET`, `HEAD`, `OPTIONS`, `PATCH`, `POST`, or `PUT`.
response_code:
type: integer
description: The http response code of the request
timestamp:
type: string
checks:
- iso_timestamp
description: The time at which the http request was received.
To use this schema to validate records:
import horkos
schema = horkos.load_schema('http-requests-schema.yaml')
schema.process({'path': '/foo/bar'})
# RecordValidationError: Casting errors - params is required, method is required, ...
schema.process({
'path': '/foo/bar',
'params': '{"foo": "bar"}',
'method': 'BAD',
'response_code': '200',
'timestamp': '2020-06-15T12:34:56',
})
# RecordValidationError: Check errors - "BAD" in method did not pass choice check, ...
schema.process({
'path': '/foo/bar',
'params': '{"foo": "bar"}',
'method': 'GET',
'response_code': '200',
'timestamp': '2020-06-15T12:34:56',
})
# {..., 'response_code': 200, ...}
CLI
It's also possible to use horkos
via cli to validate csv
and json
files.
path,params,method,response_code,timestamp
/foo/bar,,GET,200,2020-06-15T12:34:56
/fizbuz,{"param":"value"},POST,200,2020-12-15T12:34:56
/fizbuz,,ERROR,500,2020-12-15T12:34:56
/fizbuz,,GET,BAD,2020-12-15T12:34:56
To validate the csv run:
$ horkos check -s http-requests-schema.yaml data.csv
[Row 2]: Check errors - value of "ERROR" for method did not pass choice check
[Row 3]: Casting errors - value of "BAD" for response_code could not be cast to integer
2 errors found
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
horkos-0.2.5.tar.gz
(22.6 kB
view details)
Built Distribution
horkos-0.2.5-py3-none-any.whl
(29.5 kB
view details)
File details
Details for the file horkos-0.2.5.tar.gz
.
File metadata
- Download URL: horkos-0.2.5.tar.gz
- Upload date:
- Size: 22.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dbc2d15cbe7671a5d6aec878bad6f358f115daa52d7b84db4820df1a221405b3 |
|
MD5 | 00a6b08ecd80eaf422b6c0e20669e9b7 |
|
BLAKE2b-256 | 3d10fc129f5bf94bcfda41e8c237673210632ad4fb9640e63fdc992d57b0e647 |
File details
Details for the file horkos-0.2.5-py3-none-any.whl
.
File metadata
- Download URL: horkos-0.2.5-py3-none-any.whl
- Upload date:
- Size: 29.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 01fee1701e77401edb215e43c08fda0fbeaf343d7f5faa548e507527a05e900a |
|
MD5 | ce62e68da49b48f8fc9f287989c6fbe3 |
|
BLAKE2b-256 | 18fab674416d9cb348a1d0c37b8d60f2d7bb28ee02486a752a474f68133363d6 |