├── .gitignore ├── .gitmodules ├── .travis.yml ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── circle.yml ├── docs ├── Makefile ├── _static │ └── .gitkeep ├── _templates │ └── .gitkeep ├── api │ ├── index.rst │ ├── trafaret.constructor.rst │ ├── trafaret.extras.rst │ ├── trafaret.rst │ ├── trafaret.utils.rst │ └── trafaret.visitor.rst ├── changelog.rst ├── conf.py ├── index.rst └── intro.rst ├── js ├── contract.js ├── contract_test.js └── test.html ├── samples ├── sample1.py ├── sample2.py └── sample3.py ├── setup.py ├── tests ├── __init__.py ├── test_base.py ├── test_constructor.py ├── test_mongo.py └── test_utils.py ├── tox.ini └── trafaret ├── __init__.py ├── constructor.py ├── contrib ├── __init__.py ├── object_id.py └── rfc_3339.py ├── extras.py ├── lib.py ├── utils.py └── visitor.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepwalker/trafaret_forked/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepwalker/trafaret_forked/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepwalker/trafaret_forked/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepwalker/trafaret_forked/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepwalker/trafaret_forked/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepwalker/trafaret_forked/HEAD/README.rst -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepwalker/trafaret_forked/HEAD/circle.yml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepwalker/trafaret_forked/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_templates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/api/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepwalker/trafaret_forked/HEAD/docs/api/index.rst -------------------------------------------------------------------------------- /docs/api/trafaret.constructor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepwalker/trafaret_forked/HEAD/docs/api/trafaret.constructor.rst -------------------------------------------------------------------------------- /docs/api/trafaret.extras.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepwalker/trafaret_forked/HEAD/docs/api/trafaret.extras.rst -------------------------------------------------------------------------------- /docs/api/trafaret.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepwalker/trafaret_forked/HEAD/docs/api/trafaret.rst -------------------------------------------------------------------------------- /docs/api/trafaret.utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepwalker/trafaret_forked/HEAD/docs/api/trafaret.utils.rst -------------------------------------------------------------------------------- /docs/api/trafaret.visitor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepwalker/trafaret_forked/HEAD/docs/api/trafaret.visitor.rst -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepwalker/trafaret_forked/HEAD/docs/changelog.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepwalker/trafaret_forked/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepwalker/trafaret_forked/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepwalker/trafaret_forked/HEAD/docs/intro.rst -------------------------------------------------------------------------------- /js/contract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepwalker/trafaret_forked/HEAD/js/contract.js -------------------------------------------------------------------------------- /js/contract_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepwalker/trafaret_forked/HEAD/js/contract_test.js -------------------------------------------------------------------------------- /js/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepwalker/trafaret_forked/HEAD/js/test.html -------------------------------------------------------------------------------- /samples/sample1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepwalker/trafaret_forked/HEAD/samples/sample1.py -------------------------------------------------------------------------------- /samples/sample2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepwalker/trafaret_forked/HEAD/samples/sample2.py -------------------------------------------------------------------------------- /samples/sample3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepwalker/trafaret_forked/HEAD/samples/sample3.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepwalker/trafaret_forked/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepwalker/trafaret_forked/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepwalker/trafaret_forked/HEAD/tests/test_base.py -------------------------------------------------------------------------------- /tests/test_constructor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepwalker/trafaret_forked/HEAD/tests/test_constructor.py -------------------------------------------------------------------------------- /tests/test_mongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepwalker/trafaret_forked/HEAD/tests/test_mongo.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepwalker/trafaret_forked/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepwalker/trafaret_forked/HEAD/tox.ini -------------------------------------------------------------------------------- /trafaret/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepwalker/trafaret_forked/HEAD/trafaret/__init__.py -------------------------------------------------------------------------------- /trafaret/constructor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepwalker/trafaret_forked/HEAD/trafaret/constructor.py -------------------------------------------------------------------------------- /trafaret/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trafaret/contrib/object_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepwalker/trafaret_forked/HEAD/trafaret/contrib/object_id.py -------------------------------------------------------------------------------- /trafaret/contrib/rfc_3339.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepwalker/trafaret_forked/HEAD/trafaret/contrib/rfc_3339.py -------------------------------------------------------------------------------- /trafaret/extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepwalker/trafaret_forked/HEAD/trafaret/extras.py -------------------------------------------------------------------------------- /trafaret/lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepwalker/trafaret_forked/HEAD/trafaret/lib.py -------------------------------------------------------------------------------- /trafaret/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepwalker/trafaret_forked/HEAD/trafaret/utils.py -------------------------------------------------------------------------------- /trafaret/visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepwalker/trafaret_forked/HEAD/trafaret/visitor.py --------------------------------------------------------------------------------