🚀 Socket Launch Week 🚀 Day 4: Introducing Historical Analytics.Learn More
Socket
Sign inDemoInstall
Socket

pycsvschema

Package Overview
Dependencies
Maintainers
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pycsvschema

PyCSVSchema is an implementation of CSV Schema in Python.

0.0.6
PyPI
Maintainers
2

PyCSVSchema

PyPI Page: https://pypi.python.org/pypi/pycsvschema <https://pypi.python.org/pypi/pycsvschema>_

Github Page: https://github.com/crowdskout/PyCSVSchema <https://github.com/crowdskout/PyCSVSchema>_

Introduction

PyCSVSchema is an implementation of CSV Schema <https://github.com/csvschema/csvschema>__ in Python.

This project is under heavy development.

.. code:: python

>>> from pycsvschema.checker import Validator
>>>
>>> # demo.csv:
... # id,name,value
... # 1,Ann,"5"
... # 2,Ben,"10"
... # 3,Tom,"14"
...
>>>
>>> schema = {
...     'fields': [
...         {
...             'name': 'value',
...             'type': 'number',
...             'multipleOf': 5
...         }
...     ]
... }
>>>
>>> v = Validator(filename='demo.csv', schema=schema)
>>> v.validate()

Traceback (most recent call last):
...
<ValidationError: 'Value 14.0 is not multiple of 5'; column: value; row: 3>

Installation

.. code:: bash

pip install pycsvschema

License

PyCSVSchema uses the MIT license, see LICENSE file for the details.

Keywords

csv schema json jsonschema validation validator

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts