Hello, Django!

  • hello_view.py
from django.http import HttpResponse

def hello(request):
  message="<html><body>Hello, Django!</body></html>"
  return HttpResponse(message)
  • urls.py
from django.conf.urls.defaults import *
from hello_view import *

# Uncomment the next two lines to enable the admin:
# from django.contrib import admin
# admin.autodiscover()

urlpatterns = patterns('',
    # Example:
    # (r'^mysite/', include('mysite.foo.urls')),

    (r'^greet/$', hello),
    # Uncomment the admin/doc line below and add 'django.contrib.admindocs' 
    # to INSTALLED_APPS to enable admin documentation:
    # (r'^admin/doc/', include('django.contrib.admindocs.urls')),

    # Uncomment the next line to enable the admin:
    # (r'^admin/(.*)', admin.site.root),
)
  • 実行結果


  • もとねた

Djangoにはマイグレーションやscaffoldは無いっぽいね。