Skip to main content

No project description provided

Project description

csvmodel checks your csv files against a data model

This tools helps you keep your csv files valid, by validating each row against a specified jsonschema or pydantic model. This way you can always be sure that your data is complete and valid.

Install

You can install csvmodel from pypi like this

pip install csvmodel

Getting started

In this getting started guide, commands that you type are prefixed by a $ sign, output is shown as is. Let's create a csv file:

  $ echo "Employee,Email,Salary"               > employees.csv
  $ echo "Fred,fred@company.com,50000"        >> employees.csv
  $ echo "Tina,Tina123@company.com,80k"       >> employees.csv
  $ echo "Alfred,Alfred_at_home.com,60000"    >> employees.csv

We want to validate this csv file against the following json schema:

  $ echo '{'                                        > schema.json
  $ echo '  "type": "object",'                     >> schema.json
  $ echo '  "properties": {'                       >> schema.json
  $ echo '    "Employee": {"type": "string"},'     >> schema.json
  $ echo '    "Email": {'                          >> schema.json
  $ echo '      "type": "string",'                 >> schema.json
  $ echo '      "pattern": "^[a-z0-9.]+@[a-z0-9]+[.][a-z]{2,6}"' >> schema.json
  $ echo '    },'                                  >> schema.json
  $ echo '    "Salary": {"type": "number"}'        >> schema.json
  $ echo '  }'                                     >> schema.json
  $ echo '}'                                       >> schema.json

We can do so by using csvmodel like this:

  $ csvmodel --json-schema=schema.json employees.csv
  employees.csv:3: '80k' is not of type 'number'
  employees.csv:4: 'Alfred_at_home.com' does not match '^[a-z0-9.]+@[a-z0-9]+[.][a-z]{2,6}'
  [1]

This very quickly points us to the two issues with this file. Imagine having to find these (in particular for a larger file) after you noticed that pandas made your "Salary" column have type "object".

Alternatively, you can specify your data expectations in the form of a pydantic model. Let's try that out now:

  $ echo 'from pydantic import BaseModel, EmailStr'   > model.py
  $ echo ''                                          >> model.py
  $ echo 'class Employee(BaseModel):'                >> model.py
  $ echo '    Employee: str'                         >> model.py
  $ echo '    Email: EmailStr'                       >> model.py
  $ echo '    Salary: float'                         >> model.py

Again, we can get errors like this:

  $ csvmodel --pydantic-model="model.py:Employee" employees.csv
  employees.csv:3: Issue in column Salary: value is not a valid float
  employees.csv:4: Issue in column Email: value is not a valid email address
  [1]

Again, we quickly get pointed to the issues in the csv file.

Config file

csvmodel reads an ini-style configuration file from csvmodel.ini or any file passed to the --config option. The default section is [csvmodel] with the following default values:

[csvmodel]
validator = jsonschema
schema = {"type": "object"}
separator = ,

Note that this schema will accept everything (so not very useful).

Here you see, that the schema is passed "inline", i.e. it is simply written as the argument for schema. This is equivalent to prefixing it with the string "inline:" like this:

schema = inline: {"type": "object"}

If you want to read the schema froma file, you would use the following syntax

schema = file:schema.json

For the file: schema, you can (for pydantic must) add the specific class you want to use. Let's say you want to use the MyModel class, you would use

schema = file:schema.py:MyModel

The options for validator are either "jsonschema" or "pydantic".

You can overwrite specific options (e.g. the schema) on a file specific basis by using separate sections like so

[csvmodel]
validator = pydantic

[csvmodel:employees.csv]
schema = file:src/model.py:Employee

[csvmodel:products.csv]
schema = file:src/model.py:Product

Which validator?

In principle, both kinds of validator have advantages and disadvantages.

For jsonschema, we have

  • A simple portable schema language
  • Support for inline schema
  • Not very readable
  • No more than one error reported per line (this is an issue with the jsonschema validation itself)
  • Complex datatypes can involve rather advanced regex acrobatics

For pydantic, we have

  • It's python, no new language to learn
  • No support for inline schema
  • Very readable (it's python)
  • Many complex data types are already implemented in pydantic
  • Multiple errors can be reported for the same line.

Why would I want csvmodel?

Tools like flake8 or mypy are useful, because they spot weaknesses in python programs without needing to run the code. However, python code is often data science code and we don't have the same checks for data files. This is particularly relevant for small datasets, that get edited manually and consist of a few hundred kb (for larger datasets, formats are likely more structured and binary or you need to lift them from sources that already enforce some level of structure). I wrote csvmodel for these small files to be run in a similar way as flake8: As part of your favourite editor. My editor is nvim, so the integration is pretty straight forward, after writing the config file, I usually just run :!csvmodel %.

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

csvmodel-2.tar.gz (8.8 kB view details)

Uploaded Source

Built Distribution

csvmodel-2-py3-none-any.whl (7.9 kB view details)

Uploaded Python 3

File details

Details for the file csvmodel-2.tar.gz.

File metadata

  • Download URL: csvmodel-2.tar.gz
  • Upload date:
  • Size: 8.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.10

File hashes

Hashes for csvmodel-2.tar.gz
Algorithm Hash digest
SHA256 f48700de5e0832f0042230fdd3dcdd41ad3e09ca542d8b390d1ce32e74b19a23
MD5 fa53250a51e4d0ccfbb5f53254067548
BLAKE2b-256 8530071a8a7118d2a4892dcdc70b3a292ba80f09e98fedc38eabfd1228d32a64

See more details on using hashes here.

File details

Details for the file csvmodel-2-py3-none-any.whl.

File metadata

  • Download URL: csvmodel-2-py3-none-any.whl
  • Upload date:
  • Size: 7.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.10

File hashes

Hashes for csvmodel-2-py3-none-any.whl
Algorithm Hash digest
SHA256 d63423b20750bf27d81eff369f4b6532f338a8a9e50c792767fc00e22e0a420f
MD5 9e97f48d8d2459cc1f99ed4d99447a7d
BLAKE2b-256 538ea84e459994661accb1441b6326364035a94b4f67ce1f4453d1c7c625f56d

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