Skip to main content

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-yacbv-0.0.1.tar.gz (4.1 kB view details)

Uploaded Source

File details

Details for the file django-yacbv-0.0.1.tar.gz.

File metadata

File hashes

Hashes for django-yacbv-0.0.1.tar.gz
Algorithm Hash digest
SHA256 01a03f9a9a71330398d77dc6756a2776b77fcac1ca79d04177eb41c69cc23b0e
MD5 7473ab8c63c8c061f055319eef2ea5d4
BLAKE2b-256 0ab36cd5f5bb4150ba56b1c5883b6c0f6a3e835d42ad3b759b82f3f73a59e5e8

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page