Pyramid Rest Extension
Project description
Pyramid REST
First draft of a pyramid extension to build RESTful web application.
Features included:
resource definition which configure routes/views, i.e:
a resource ‘application’:
route [GET/POST] /applications
route [GET/DELETE/PUT] /applications/{application_id}
route GET /applications/{application_id}/new
route GET /applications/{application_id}/edit
a resource ‘application.user’:
route [GET/POST] /applications/{application_id}/users
route [GET/DELETE/PUT] /applications/{application_id}/users/{user_id}
route GET /applications/{application_id}/users/new
route GET /applications/{application_id}/users/edit
a singular resource ‘application.user.score’:
route [GET/PUT] /applications/{application_id}/users/{user_id}/score
route GET /applications/{application_id}/users/{user_id}/score/edit
resources are added to config introspector and related to their routes,views, sub-resource and parent resource;
end user defines REST methods (index, create, show, update, delete, new, edit);
by default:
HTTP 405 is returned for any method not provided;
permissions ‘index, create, show, update, delete, new, edit’ are associated to respective method;
3 ways to configure resource:
Imperative using config.add_resource, it will associate class in views module to resource
config.add_resource('application') # .views.applications:ApplicationsView config.add_resource('application.user') # .views.application_users:ApplicationUsersView
Declarative using Resource class (cornice style):
app_users = Resource('application.user') @app_users.index() def index(context, request, application_id): pass @app_users.show() def show(context, request, application_id, id): pass
Declarative using resource_config decorator:
@resource_config('application.user') class AppUsers(object): def __init__(self, context, request): pass def index(self, application_id): return {} @method_config(renderer='example.mako') def edit(self, application_id, id): return {}
What next?
Security
HTTP PATCH method: http://tools.ietf.org/html/rfc5789
Resource Scaffolding command;
Links;
Validation;
Pagination;
Automatic resource definition of SQLAlchemy entities;
Have a view parameter in add_resource to override view definition;
Code/Feedbacks
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file pyramid_rest-0.2.5.tar.gz
.
File metadata
- Download URL: pyramid_rest-0.2.5.tar.gz
- Upload date:
- Size: 17.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6c1a6450bb3e3eee8811cc6d46c32cc93041f37a24c65746514eef44da72a633 |
|
MD5 | a13cbd200d7b15a26af4eda733eb195f |
|
BLAKE2b-256 | c0b85256ffb824f0c9bc6d9996a4b3fc539d09adc72a9d311cba098ac4c041ed |