1. map 和 reduce MapReduce 任務(wù)過程分為兩個處理階段:map階段和reduce階段厢洞。每階段都以鍵-值對座位輸入和輸出仇让,其類型由程序員來選擇。程序員還需...
Reusable apps First, create a parent directory for polls, outside of your Django projec...
Customing the admin site Customize the admin form# polls/admin.pyfrom django.contrib im...
Static files Customize your app’s look and feel/* polls/static/polls/style.css */li a {...
Testing Create a test to expose the bug$ python manage.py shell# identify a bug>>> impo...
Forms and generic views Write a simple form<!-- polls/templates/polls/detail.html --> {...
Views and templates Writing more views# polls/views.py # views responsedef detail(reque...
Models and the admin site Database setup$ pip install mysqlclient Creating modelsfrom d...
Requests and responses Create project and app# Creating a project$ django-admin startpr...