├── .gitignore ├── .travis.yml ├── LICENSE.md ├── README.md ├── heroku.py ├── setup.py ├── tests ├── __init__.py ├── fixtures.py ├── schema.json ├── test_fixtures.py ├── test_link.py ├── test_model.py ├── test_resource.py ├── test_schema.py └── test_service.py ├── tox.ini └── valor ├── __init__.py ├── link.py ├── model.py ├── resource.py ├── schema.py ├── service.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | htmlcov/ 2 | .coverage 3 | dist/ 4 | *.egg-info 5 | .tox/ 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobian/valor/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobian/valor/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobian/valor/HEAD/README.md -------------------------------------------------------------------------------- /heroku.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobian/valor/HEAD/heroku.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobian/valor/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobian/valor/HEAD/tests/fixtures.py -------------------------------------------------------------------------------- /tests/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobian/valor/HEAD/tests/schema.json -------------------------------------------------------------------------------- /tests/test_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobian/valor/HEAD/tests/test_fixtures.py -------------------------------------------------------------------------------- /tests/test_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobian/valor/HEAD/tests/test_link.py -------------------------------------------------------------------------------- /tests/test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobian/valor/HEAD/tests/test_model.py -------------------------------------------------------------------------------- /tests/test_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobian/valor/HEAD/tests/test_resource.py -------------------------------------------------------------------------------- /tests/test_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobian/valor/HEAD/tests/test_schema.py -------------------------------------------------------------------------------- /tests/test_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobian/valor/HEAD/tests/test_service.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobian/valor/HEAD/tox.ini -------------------------------------------------------------------------------- /valor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobian/valor/HEAD/valor/__init__.py -------------------------------------------------------------------------------- /valor/link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobian/valor/HEAD/valor/link.py -------------------------------------------------------------------------------- /valor/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobian/valor/HEAD/valor/model.py -------------------------------------------------------------------------------- /valor/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobian/valor/HEAD/valor/resource.py -------------------------------------------------------------------------------- /valor/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobian/valor/HEAD/valor/schema.py -------------------------------------------------------------------------------- /valor/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobian/valor/HEAD/valor/service.py -------------------------------------------------------------------------------- /valor/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobian/valor/HEAD/valor/utils.py --------------------------------------------------------------------------------