Metadata-Version: 2.0
Name: csvalidate
Version: 0.2.0
Summary: CSV reader and writer with validation
Home-page: https://github.com/Shir0kamii/csvalidate
Author: Shir0kamii
Author-email: shir0kamii@gmail.com
License: UNKNOWN
Download-URL: https://github.com/Shir0kamii/csvalidate/tags
Platform: any
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5

##########
csvalidate
##########

csvalidate is a minimal library for reading from and writing to csv with an
added layer of validation

Get Started
###########

Installation
============

As any python package, you can install it via pip::

    $ pip install csvalidate

How ot use it ?
===============

The gist of it is to subclass one of `ValidatedReader` or `ValidatedWriter` and
add a `schema` class attribute that defines validation.

Examples can be found in the `examples` directory.


