├── .coveragerc ├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── NOTICE ├── README.md ├── docs ├── Makefile ├── api.rst ├── conf.py ├── index.rst ├── make.bat ├── requirements.txt └── user │ ├── configuration.rst │ ├── expandables.rst │ ├── filters.rst │ ├── generics.rst │ ├── pagination.rst │ ├── permissions.rst │ ├── quickstart.rst │ ├── views.rst │ └── viewsets.rst ├── pyramid_restful ├── __init__.py ├── decorators.py ├── exceptions.py ├── expandables.py ├── filters.py ├── generics.py ├── mixins.py ├── pagination │ ├── __init__.py │ ├── base.py │ ├── linkheader.py │ ├── pagenumber.py │ └── utilities.py ├── permissions.py ├── routers.py ├── settings.py ├── views.py └── viewsets.py ├── pytest.ini ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── test_decorartors.py ├── test_expandables.py ├── test_generics.py ├── test_mixins.py ├── test_pagination.py ├── test_routers.py ├── test_settings.py ├── test_views.py └── test_viewsets.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | source = pyramid_restful 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danpoland/pyramid-restful-framework/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danpoland/pyramid-restful-framework/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danpoland/pyramid-restful-framework/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danpoland/pyramid-restful-framework/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danpoland/pyramid-restful-framework/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danpoland/pyramid-restful-framework/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danpoland/pyramid-restful-framework/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danpoland/pyramid-restful-framework/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danpoland/pyramid-restful-framework/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danpoland/pyramid-restful-framework/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danpoland/pyramid-restful-framework/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | sphinx-autobuild==0.7.1 -------------------------------------------------------------------------------- /docs/user/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danpoland/pyramid-restful-framework/HEAD/docs/user/configuration.rst -------------------------------------------------------------------------------- /docs/user/expandables.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danpoland/pyramid-restful-framework/HEAD/docs/user/expandables.rst -------------------------------------------------------------------------------- /docs/user/filters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danpoland/pyramid-restful-framework/HEAD/docs/user/filters.rst -------------------------------------------------------------------------------- /docs/user/generics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danpoland/pyramid-restful-framework/HEAD/docs/user/generics.rst -------------------------------------------------------------------------------- /docs/user/pagination.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danpoland/pyramid-restful-framework/HEAD/docs/user/pagination.rst -------------------------------------------------------------------------------- /docs/user/permissions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danpoland/pyramid-restful-framework/HEAD/docs/user/permissions.rst -------------------------------------------------------------------------------- /docs/user/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danpoland/pyramid-restful-framework/HEAD/docs/user/quickstart.rst -------------------------------------------------------------------------------- /docs/user/views.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danpoland/pyramid-restful-framework/HEAD/docs/user/views.rst -------------------------------------------------------------------------------- /docs/user/viewsets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danpoland/pyramid-restful-framework/HEAD/docs/user/viewsets.rst -------------------------------------------------------------------------------- /pyramid_restful/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danpoland/pyramid-restful-framework/HEAD/pyramid_restful/__init__.py -------------------------------------------------------------------------------- /pyramid_restful/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danpoland/pyramid-restful-framework/HEAD/pyramid_restful/decorators.py -------------------------------------------------------------------------------- /pyramid_restful/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danpoland/pyramid-restful-framework/HEAD/pyramid_restful/exceptions.py -------------------------------------------------------------------------------- /pyramid_restful/expandables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danpoland/pyramid-restful-framework/HEAD/pyramid_restful/expandables.py -------------------------------------------------------------------------------- /pyramid_restful/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danpoland/pyramid-restful-framework/HEAD/pyramid_restful/filters.py -------------------------------------------------------------------------------- /pyramid_restful/generics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danpoland/pyramid-restful-framework/HEAD/pyramid_restful/generics.py -------------------------------------------------------------------------------- /pyramid_restful/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danpoland/pyramid-restful-framework/HEAD/pyramid_restful/mixins.py -------------------------------------------------------------------------------- /pyramid_restful/pagination/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danpoland/pyramid-restful-framework/HEAD/pyramid_restful/pagination/__init__.py -------------------------------------------------------------------------------- /pyramid_restful/pagination/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danpoland/pyramid-restful-framework/HEAD/pyramid_restful/pagination/base.py -------------------------------------------------------------------------------- /pyramid_restful/pagination/linkheader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danpoland/pyramid-restful-framework/HEAD/pyramid_restful/pagination/linkheader.py -------------------------------------------------------------------------------- /pyramid_restful/pagination/pagenumber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danpoland/pyramid-restful-framework/HEAD/pyramid_restful/pagination/pagenumber.py -------------------------------------------------------------------------------- /pyramid_restful/pagination/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danpoland/pyramid-restful-framework/HEAD/pyramid_restful/pagination/utilities.py -------------------------------------------------------------------------------- /pyramid_restful/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danpoland/pyramid-restful-framework/HEAD/pyramid_restful/permissions.py -------------------------------------------------------------------------------- /pyramid_restful/routers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danpoland/pyramid-restful-framework/HEAD/pyramid_restful/routers.py -------------------------------------------------------------------------------- /pyramid_restful/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danpoland/pyramid-restful-framework/HEAD/pyramid_restful/settings.py -------------------------------------------------------------------------------- /pyramid_restful/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danpoland/pyramid-restful-framework/HEAD/pyramid_restful/views.py -------------------------------------------------------------------------------- /pyramid_restful/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danpoland/pyramid-restful-framework/HEAD/pyramid_restful/viewsets.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danpoland/pyramid-restful-framework/HEAD/pytest.ini -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danpoland/pyramid-restful-framework/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_decorartors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danpoland/pyramid-restful-framework/HEAD/tests/test_decorartors.py -------------------------------------------------------------------------------- /tests/test_expandables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danpoland/pyramid-restful-framework/HEAD/tests/test_expandables.py -------------------------------------------------------------------------------- /tests/test_generics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danpoland/pyramid-restful-framework/HEAD/tests/test_generics.py -------------------------------------------------------------------------------- /tests/test_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danpoland/pyramid-restful-framework/HEAD/tests/test_mixins.py -------------------------------------------------------------------------------- /tests/test_pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danpoland/pyramid-restful-framework/HEAD/tests/test_pagination.py -------------------------------------------------------------------------------- /tests/test_routers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danpoland/pyramid-restful-framework/HEAD/tests/test_routers.py -------------------------------------------------------------------------------- /tests/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danpoland/pyramid-restful-framework/HEAD/tests/test_settings.py -------------------------------------------------------------------------------- /tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danpoland/pyramid-restful-framework/HEAD/tests/test_views.py -------------------------------------------------------------------------------- /tests/test_viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danpoland/pyramid-restful-framework/HEAD/tests/test_viewsets.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danpoland/pyramid-restful-framework/HEAD/tox.ini --------------------------------------------------------------------------------