码迷,mamicode.com
首页 > 其他好文 > 详细

django的hello world

时间:2018-07-04 11:44:16      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:lin   world   deb   test   core   str   for   comm   sys   

==================hello.py=================================
import sys

from django.conf import settings
from django.http import HttpResponse
from django.conf.urls import url
from django.core.management import execute_from_command_line

settings.configure(
DEBUG=True,
SECRET_KEY=‘onlyfortest‘,
ROOT_URLCONF=name,
)

def index(request):
return HttpResponse(‘Hello World‘)

urlpatterns = (
url(‘^$‘, index),
)

if name == "main":
execute_from_command_line(sys.argv)
========================================================

运行命令:
python hello.py runserver

django的hello world

标签:lin   world   deb   test   core   str   for   comm   sys   

原文地址:https://www.cnblogs.com/ht1947/p/9262243.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!