Last active
April 12, 2016 17:04
-
-
Save devStepsize/2969473b0001e65bb00250c4c4d845b7 to your computer and use it in GitHub Desktop.
Example view in Django
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.http import HttpResponse | |
from django.views.generic import View | |
class MyView(View): | |
def get(self, request, *args, **kwargs): | |
return HttpResponse('Hello, World!') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment