Django

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 …

first step

同じことをDjangoでもやってみましょう。 まずはPython >python -V Python 2.5.1 最初から入ってますね。ちなみに-vにするとわけわからんメッセージがでてきますw次にDjango リポジトリからとってきます。 >svn co http://code.djangoproject.com/svn/django…