Replacement for Django's ClassBasedView.
Project description
Django Yet Another Class Based View
django-yacbv (YetAnotherClassBasedView) is replacement of django’s CBV (django.views.generic.View).
Django’s View can only dispatch corresponds to request.method. but in many cases, it should consider more things, such as request parameter.
Django’s ClassBasedGenericView is inflexible, hard to remember it’s API and hard to understand succession inheritances.
Django’s View can’t remove decorators, this is necessary for testing. it forces us to test views with decorators, always it obstructs to pure unit testing.
As these solution, django-yacbv is released.
YACBV is simple
django-yacbv provide simple class based view, allowing user to create more flexible dispatching, like this:
from yacbv import View, view_config
class TopView(View):
@view_config(method='get',
param='flip',
template_name='top2.html')
def flipped(self, request):
return {'word': request.GET['flip']}
@view_config(method='get',
template_name='top.html')
def get(self, request):
return {'word': 'world'}
Notice about them:
The flip method will be dispatched only case that Request object contains flip parameter.
The template for each views can be specified as template_name argument of view_config.
These returned dictionary will be used as context for Template.
Now, django-yacbv is just pre-alpha library, not for production. If you like this package, check out it from Github!
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 django-yacbv-0.0.1.tar.gz
.
File metadata
- Download URL: django-yacbv-0.0.1.tar.gz
- Upload date:
- Size: 4.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 01a03f9a9a71330398d77dc6756a2776b77fcac1ca79d04177eb41c69cc23b0e |
|
MD5 | 7473ab8c63c8c061f055319eef2ea5d4 |
|
BLAKE2b-256 | 0ab36cd5f5bb4150ba56b1c5883b6c0f6a3e835d42ad3b759b82f3f73a59e5e8 |