├── .gitignore ├── .travis.yml ├── LICENSE ├── README.rst ├── doc ├── common │ └── introduction.rst ├── readme │ ├── README.rst │ └── conf.py └── site │ ├── Makefile │ ├── changelog.rst │ ├── conf.py │ └── index.rst ├── example ├── boolean.py ├── boolean.txt ├── example.py └── example.txt ├── pandas_schema ├── __init__.py ├── column.py ├── errors.py ├── schema.py ├── validation.py ├── validation_warning.py └── version.py ├── requirements.txt ├── setup.py └── test ├── __init__.py ├── test_column.py ├── test_example.py ├── test_metadata.py ├── test_schema.py ├── test_validation.py └── test_validation_warning.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multimeric/PandasSchema/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multimeric/PandasSchema/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multimeric/PandasSchema/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multimeric/PandasSchema/HEAD/README.rst -------------------------------------------------------------------------------- /doc/common/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multimeric/PandasSchema/HEAD/doc/common/introduction.rst -------------------------------------------------------------------------------- /doc/readme/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multimeric/PandasSchema/HEAD/doc/readme/README.rst -------------------------------------------------------------------------------- /doc/readme/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multimeric/PandasSchema/HEAD/doc/readme/conf.py -------------------------------------------------------------------------------- /doc/site/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multimeric/PandasSchema/HEAD/doc/site/Makefile -------------------------------------------------------------------------------- /doc/site/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multimeric/PandasSchema/HEAD/doc/site/changelog.rst -------------------------------------------------------------------------------- /doc/site/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multimeric/PandasSchema/HEAD/doc/site/conf.py -------------------------------------------------------------------------------- /doc/site/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multimeric/PandasSchema/HEAD/doc/site/index.rst -------------------------------------------------------------------------------- /example/boolean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multimeric/PandasSchema/HEAD/example/boolean.py -------------------------------------------------------------------------------- /example/boolean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multimeric/PandasSchema/HEAD/example/boolean.txt -------------------------------------------------------------------------------- /example/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multimeric/PandasSchema/HEAD/example/example.py -------------------------------------------------------------------------------- /example/example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multimeric/PandasSchema/HEAD/example/example.txt -------------------------------------------------------------------------------- /pandas_schema/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multimeric/PandasSchema/HEAD/pandas_schema/__init__.py -------------------------------------------------------------------------------- /pandas_schema/column.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multimeric/PandasSchema/HEAD/pandas_schema/column.py -------------------------------------------------------------------------------- /pandas_schema/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multimeric/PandasSchema/HEAD/pandas_schema/errors.py -------------------------------------------------------------------------------- /pandas_schema/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multimeric/PandasSchema/HEAD/pandas_schema/schema.py -------------------------------------------------------------------------------- /pandas_schema/validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multimeric/PandasSchema/HEAD/pandas_schema/validation.py -------------------------------------------------------------------------------- /pandas_schema/validation_warning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multimeric/PandasSchema/HEAD/pandas_schema/validation_warning.py -------------------------------------------------------------------------------- /pandas_schema/version.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.3.6' 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multimeric/PandasSchema/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multimeric/PandasSchema/HEAD/setup.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multimeric/PandasSchema/HEAD/test/__init__.py -------------------------------------------------------------------------------- /test/test_column.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multimeric/PandasSchema/HEAD/test/test_column.py -------------------------------------------------------------------------------- /test/test_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multimeric/PandasSchema/HEAD/test/test_example.py -------------------------------------------------------------------------------- /test/test_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multimeric/PandasSchema/HEAD/test/test_metadata.py -------------------------------------------------------------------------------- /test/test_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multimeric/PandasSchema/HEAD/test/test_schema.py -------------------------------------------------------------------------------- /test/test_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multimeric/PandasSchema/HEAD/test/test_validation.py -------------------------------------------------------------------------------- /test/test_validation_warning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multimeric/PandasSchema/HEAD/test/test_validation_warning.py --------------------------------------------------------------------------------