Advertisement
Guest User

Untitled

a guest
Feb 26th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. Installtion
  2.  
  3. pip install django
  4.  
  5.  
  6. Create Project
  7.  
  8. django-admin startproject home
  9.  
  10. Run server
  11.  
  12. python manage.py runserver
  13.  
  14.  
  15. Django relies on a three-part process for adding Web pages
  16.  
  17. 1) Templates - the layout and appearance
  18. 2) Views - the logic or actual database-driven content
  19. 3) URLs - the location, for example /about/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement