Skip to content

Instantly share code, notes, and snippets.

@devStepsize
Last active April 12, 2016 17:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save devStepsize/2969473b0001e65bb00250c4c4d845b7 to your computer and use it in GitHub Desktop.
Save devStepsize/2969473b0001e65bb00250c4c4d845b7 to your computer and use it in GitHub Desktop.
Example view in Django
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