Introduction to Django
        pyArkansas


        Wade Austin
        @k_wade_a
What is Django?
“Django is a high-level Python Web framework that
encourages rapid development and clean, pragmatic
design.”
                                     www.djangoproject.com


• Created out of the newspaper industry
• Help developers build sites fast
• Encourage Reuse and Lose Coupling
• DRY (don’t repeat yourself)
• Minimal Code
• Opinionated
Batteries Included
             django.contrib


• Admin Interface for editing data.
• Auth module for user accounts
• Syndication module for generation of RSS
• Static Pages
Active Community

• Many Community Contributed Apps
• Pinax
  http://pinaxproject.com/


• Django Packages
  http://djangopackages.com/
Django Projects
•   A project is your website.

•   Projects contain the configuration information for
    your site.

•   Create a project:
    django-admin.py startproject [PROJECT_NAME]

•   Projects contain 3 files:
    •   settings.py - configuration information for your project

    •   urls.py - URL routes defined by your project

    •   manage.py - alias of django-admin.py tuned to your project
Django Applications
• Projects are built from Applications
• Apps encapsulate some piece of
  functionality
  •   blog, photo gallery, shopping cart, etc.

• Apps can be reused
• Apps are Python Packages
• manage.py startapp [MY_APP_NAME]
Django Application
     Components
• Models - Your Data
• Views - Rules for Accessing Data
• Templates - Displays Data
• URL Patterns - Maps URLs to Views
Models

• Describes the data in your apps
• Defined in an app’s models.py file
• Map Python Classes to Database Tables
• Provides an API for creating, retrieving,
  changing and deleting data
Blog Data Definition
CREATE TABLE "blog_category" (
   "id" integer NOT NULL PRIMARY KEY,
   "name" varchar(50) NOT NULL
);

CREATE TABLE "blog_blogpost" (
   "id" integer NOT NULL PRIMARY KEY,
   "title" varchar(100) NOT NULL,
   "slug" varchar(50) NOT NULL UNIQUE,
   "publish_date" datetime NOT NULL,
   "is_published" bool NOT NULL,
   "content" text NOT NULL,
   "category_id" integer NOT NULL REFERENCES "blog_category" ("id")
);
Django Hides the SQL


• SQL is not consistent across databases
• Difficult to store in version control
Model Example
from django.db import models
from datetime import datetime

class Category(models.Model):
    name = models.CharField(max_length=50)

class BlogPost(models.Model):
    title = models.CharField(max_length=100)
    slug = models.SlugField(unique=True)
    publish_date = models.DateTimeField(default=datetime.now)
    is_published = models.BooleanField(default=False)
    content = models.TextField(blank=True)
    category = models.ForeignKey(Category,
               related_name=‘posts’)
Creating your database

• manage.py syncdb command creates tables
  from models
• Creates all models for any app in your
  project’s INSTALLED_APPS setting
Querying Models
posts = BlogPost.objects.all()

publshed_posts = BlogPost.objects.filter(is_published=True)

news_posts = BlogPost.objects.filter(category__name = 'News')

c = Category(
    name="News"
)
c.save()
Views

• Business Logic
• Perform a task and render output
  (HTML/JSON/XML)


• Python function that takes an HttpRequest
  and returns an HttpResponse
• Defined in an app’s views.py file
Hello World View

from django.http import HttpResponse

def hello_world(request):
    return HttpResponse("Hello World")
Latest Posts View
from django.shortcuts import render
from blog.models import BlogPost

def get_latest_posts(request):
    today = datetime.datetime.now()
    posts = BlogPost.objects.filter(is_published=True).
                    filter(publish_date__lte=today).
                    order_by('-publish_date')

    return render( request, 'blog/latest_posts.html',
                   {'posts':posts})
Post Detail View
from django.shortcuts import render, get_object_or_404
from blog.models import BlogPost

def blog_post_detail(request, slug):
    post = get_object_or_404(BlogPost, slug=slug)
    return render( request, "blog/blogpost_detail.html",
                   {"post":post})
URL Routes

• Defines the URLs used in your project
• Maps a URL to a View Function
• Defined using Regular Expressions
• Defined in an app’s urls.py file.
URL Example

urlpatterns = patterns('',
    url(r'^latest_posts/$',
        'blog.views.get_latest_posts',
        name='blog_blogpost_latest'),

    url(r'^post/(?P<slug>[-w]+)/$',
        'blog.views.blog_post_detail',
        name='blog_blogpost_detail'),
)
Templates
• Describes the Presentation of your data
• Separates Logic from Presentation
• Simple Syntax
• Designer Friendly
• Supports Reuse through inheritance and
  inclusion
• Blocks allow child templates to insert
  content into parent templates
Template Syntax

• Variables: {{variable-name}}
• Tags: Perform logic
  {% include “_form.html” %}
• Filters: Operate on data
  {{post.publish_date|date:"m/d/Y"}}
Template “base.html”
<html>
<head>
    <title>{% block title %}{% endblock %}My Site</title>
    <link rel="stylesheet" href="{{STATIC_URL}}css/screen.css"
                    media="screen, projection"/>
</head>
<body>
    <h1>My test site</h1>

   {% block content %}
   {% endblock %}

</body>
</html>
Template
            “latest_posts.html”
{% extends "base.html" %}

{% block title %}Latest Blog Posts -
{% endblock %}

{% block content %}
    <h2>Latest Blog Posts</h1>
    {% for p in posts %}
        <h3><a href="{% url blog_blogpost_detail p.slug %}">{{p.title}}</a></h3>
        <p><strong>Published:</strong>
          {{p.publish_date|date:"m/d/Y"}}
          </p>
        <div class="content">
            {{p.content|safe}}
        </div>
    {% endfor %}
{% endblock %}


         List of Template Tags and Filters: https://docs.djangoproject.com/en/dev/ref/templates/builtins/
The admin
• Not a CMS
• Allows site admins to edit content
• Auto CRUD views for your models
• Easy to customize
• Optional. If you don’t like it you can write
  your own
Introduction Django
Admin List
Admin Edit Screen
The admin

• add django.contrib.admin to
  INSTALLED_APPS
• Uncomment admin import, discover, and url
  pattern from PROJECTS urls.py
• Create an admin.py file for each app you
  want to manage
Sample admin.py

from django.contrib import admin

class BlogPostAdmin(admin.ModelAdmin):
    list_display = ('title', 'publish_date', 'is_published')
    list_filter = ('is_published', 'publish_date')
    search_fields = ('title', 'content')

admin.site.register(BlogPost, BlogPostAdmin)
Other Stuff

• Forms
• Caching
• Testing
Resources
•   Official Django Tutorial
    https://docs.djangoproject.com/en/dev/intro/tutorial01/


•   Django Documentation
    https://docs.djangoproject.com/


•   The Django Book
    http://www.djangobook.com/


• Practical Django Projects
    https://docs.djangoproject.com/


• Pro Django
    http://prodjango.com/
Thank You

    Wade Austin
http://wadeaustin.com
    @k_wade_a

More Related Content

PDF
Gae Meets Django
PDF
Django Overview
PDF
Multi screen HTML5
PPTX
The Django Web Application Framework 2
PPTX
Apex & jQuery Mobile
PPTX
SPTechCon 2014 How to develop and debug client side code in SharePoint
KEY
Web application development with Django framework
PDF
Build Amazing Add-ons for Atlassian JIRA and Confluence
Gae Meets Django
Django Overview
Multi screen HTML5
The Django Web Application Framework 2
Apex & jQuery Mobile
SPTechCon 2014 How to develop and debug client side code in SharePoint
Web application development with Django framework
Build Amazing Add-ons for Atlassian JIRA and Confluence

What's hot (20)

PDF
Mezzanine簡介 (at) Taichung.py
KEY
Making WordPress Your CMS and Automatically Updating a Self Hosted WordPress ...
PDF
Acquia Drupal Certification
PPTX
WordPress theme development from scratch : ICT MeetUp 2013 Nepal
PPTX
CQ Provisionning & Authoring
PPTX
SPTechCon Boston 2015 - Utilizing jQuery in SharePoint
PPTX
SPSDenver - SharePoint & jQuery - What I wish I would have known
PPTX
Plugins unplugged
PPTX
SharePoint Saturday St. Louis - SharePoint & jQuery
PDF
How Bitbucket Pipelines Loads Connect UI Assets Super-fast
PPTX
A Power User's Intro to jQuery Awesomeness in SharePoint
PPTX
WordPress Theme Development: Part 2
PDF
AEM Best Practices for Component Development
PDF
Creating Modular Test-Driven SPAs with Spring and AngularJS
PDF
EVOLVE'14 | Enhance | Gabriel Walt | Sightly Component Development
PPTX
SharePoint & jQuery Guide - SPSNashville 2014
PPTX
SPTechCon DevDays - SharePoint & jQuery
PPTX
Dynamic components using SPA concepts in AEM
PPTX
Challenges going mobile
PPTX
Share point hosted add ins munich
Mezzanine簡介 (at) Taichung.py
Making WordPress Your CMS and Automatically Updating a Self Hosted WordPress ...
Acquia Drupal Certification
WordPress theme development from scratch : ICT MeetUp 2013 Nepal
CQ Provisionning & Authoring
SPTechCon Boston 2015 - Utilizing jQuery in SharePoint
SPSDenver - SharePoint & jQuery - What I wish I would have known
Plugins unplugged
SharePoint Saturday St. Louis - SharePoint & jQuery
How Bitbucket Pipelines Loads Connect UI Assets Super-fast
A Power User's Intro to jQuery Awesomeness in SharePoint
WordPress Theme Development: Part 2
AEM Best Practices for Component Development
Creating Modular Test-Driven SPAs with Spring and AngularJS
EVOLVE'14 | Enhance | Gabriel Walt | Sightly Component Development
SharePoint & jQuery Guide - SPSNashville 2014
SPTechCon DevDays - SharePoint & jQuery
Dynamic components using SPA concepts in AEM
Challenges going mobile
Share point hosted add ins munich

Viewers also liked (6)

KEY
DjangoCon recap
PDF
PPT
Teaching an Old Pony New Tricks: Maintaining and Updating and Aging Django Site
PDF
Plone in Higher Education
PDF
Agile Development with Plone
PDF
Gtd Intro
DjangoCon recap
Teaching an Old Pony New Tricks: Maintaining and Updating and Aging Django Site
Plone in Higher Education
Agile Development with Plone
Gtd Intro

Similar to Introduction Django (20)

PPTX
Tango with django
PDF
Introduction to Django
PDF
Django 1.10.3 Getting started
PPTX
The Django Web Application Framework 2
PPTX
The Django Web Application Framework 2
PPTX
The Django Web Application Framework 2
PDF
Django workshop : let's make a blog
PDF
GDG Addis - An Introduction to Django and App Engine
PDF
django
PPT
Mini Curso Django Ii Congresso Academico Ces
PPTX
Web development with django - Basics Presentation
PPTX
Django course
ODP
Django for Beginners
PPTX
Why Django for Web Development
PDF
Mini Curso de Django
PDF
Django
DOCX
Akash rajguru project report sem v
PDF
Django a whirlwind tour
PDF
Django Introduction & Tutorial
PDF
Rapid web application development using django - Part (1)
Tango with django
Introduction to Django
Django 1.10.3 Getting started
The Django Web Application Framework 2
The Django Web Application Framework 2
The Django Web Application Framework 2
Django workshop : let's make a blog
GDG Addis - An Introduction to Django and App Engine
django
Mini Curso Django Ii Congresso Academico Ces
Web development with django - Basics Presentation
Django course
Django for Beginners
Why Django for Web Development
Mini Curso de Django
Django
Akash rajguru project report sem v
Django a whirlwind tour
Django Introduction & Tutorial
Rapid web application development using django - Part (1)

Recently uploaded (20)

PDF
NewMind AI Journal Monthly Chronicles - August 2025
PDF
Advancements in abstractive text summarization: a deep learning approach
PDF
TrustArc Webinar - Data Minimization in Practice_ Reducing Risk, Enhancing Co...
PDF
Altius execution marketplace concept.pdf
PDF
TicketRoot: Event Tech Solutions Deck 2025
PPTX
Presentation - Principles of Instructional Design.pptx
PDF
Be ready for tomorrow’s needs with a longer-lasting, higher-performing PC
PDF
Peak of Data & AI Encore: Scalable Design & Infrastructure
PDF
Addressing the challenges of harmonizing law and artificial intelligence tech...
PPTX
Information-Technology-in-Human-Society (2).pptx
PPTX
maintenance powerrpoint for adaprive and preventive
PPTX
Rise of the Digital Control Grid Zeee Media and Hope and Tivon FTWProject.com
PDF
The Digital Engine Room: Unlocking APAC’s Economic and Digital Potential thro...
PDF
Secure Java Applications against Quantum Threats
PDF
Intravenous drug administration application for pediatric patients via augmen...
PDF
Decision Optimization - From Theory to Practice
PDF
Slides World Game (s) Great Redesign Eco Economic Epochs.pdf
PDF
Introduction to c language from lecture slides
PPT
Overviiew on Intellectual property right
PDF
CCUS-as-the-Missing-Link-to-Net-Zero_AksCurious.pdf
NewMind AI Journal Monthly Chronicles - August 2025
Advancements in abstractive text summarization: a deep learning approach
TrustArc Webinar - Data Minimization in Practice_ Reducing Risk, Enhancing Co...
Altius execution marketplace concept.pdf
TicketRoot: Event Tech Solutions Deck 2025
Presentation - Principles of Instructional Design.pptx
Be ready for tomorrow’s needs with a longer-lasting, higher-performing PC
Peak of Data & AI Encore: Scalable Design & Infrastructure
Addressing the challenges of harmonizing law and artificial intelligence tech...
Information-Technology-in-Human-Society (2).pptx
maintenance powerrpoint for adaprive and preventive
Rise of the Digital Control Grid Zeee Media and Hope and Tivon FTWProject.com
The Digital Engine Room: Unlocking APAC’s Economic and Digital Potential thro...
Secure Java Applications against Quantum Threats
Intravenous drug administration application for pediatric patients via augmen...
Decision Optimization - From Theory to Practice
Slides World Game (s) Great Redesign Eco Economic Epochs.pdf
Introduction to c language from lecture slides
Overviiew on Intellectual property right
CCUS-as-the-Missing-Link-to-Net-Zero_AksCurious.pdf

Introduction Django

  • 1. Introduction to Django pyArkansas Wade Austin @k_wade_a
  • 2. What is Django? “Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design.” www.djangoproject.com • Created out of the newspaper industry • Help developers build sites fast • Encourage Reuse and Lose Coupling • DRY (don’t repeat yourself) • Minimal Code • Opinionated
  • 3. Batteries Included django.contrib • Admin Interface for editing data. • Auth module for user accounts • Syndication module for generation of RSS • Static Pages
  • 4. Active Community • Many Community Contributed Apps • Pinax http://pinaxproject.com/ • Django Packages http://djangopackages.com/
  • 5. Django Projects • A project is your website. • Projects contain the configuration information for your site. • Create a project: django-admin.py startproject [PROJECT_NAME] • Projects contain 3 files: • settings.py - configuration information for your project • urls.py - URL routes defined by your project • manage.py - alias of django-admin.py tuned to your project
  • 6. Django Applications • Projects are built from Applications • Apps encapsulate some piece of functionality • blog, photo gallery, shopping cart, etc. • Apps can be reused • Apps are Python Packages • manage.py startapp [MY_APP_NAME]
  • 7. Django Application Components • Models - Your Data • Views - Rules for Accessing Data • Templates - Displays Data • URL Patterns - Maps URLs to Views
  • 8. Models • Describes the data in your apps • Defined in an app’s models.py file • Map Python Classes to Database Tables • Provides an API for creating, retrieving, changing and deleting data
  • 9. Blog Data Definition CREATE TABLE "blog_category" ( "id" integer NOT NULL PRIMARY KEY, "name" varchar(50) NOT NULL ); CREATE TABLE "blog_blogpost" ( "id" integer NOT NULL PRIMARY KEY, "title" varchar(100) NOT NULL, "slug" varchar(50) NOT NULL UNIQUE, "publish_date" datetime NOT NULL, "is_published" bool NOT NULL, "content" text NOT NULL, "category_id" integer NOT NULL REFERENCES "blog_category" ("id") );
  • 10. Django Hides the SQL • SQL is not consistent across databases • Difficult to store in version control
  • 11. Model Example from django.db import models from datetime import datetime class Category(models.Model): name = models.CharField(max_length=50) class BlogPost(models.Model): title = models.CharField(max_length=100) slug = models.SlugField(unique=True) publish_date = models.DateTimeField(default=datetime.now) is_published = models.BooleanField(default=False) content = models.TextField(blank=True) category = models.ForeignKey(Category, related_name=‘posts’)
  • 12. Creating your database • manage.py syncdb command creates tables from models • Creates all models for any app in your project’s INSTALLED_APPS setting
  • 13. Querying Models posts = BlogPost.objects.all() publshed_posts = BlogPost.objects.filter(is_published=True) news_posts = BlogPost.objects.filter(category__name = 'News') c = Category( name="News" ) c.save()
  • 14. Views • Business Logic • Perform a task and render output (HTML/JSON/XML) • Python function that takes an HttpRequest and returns an HttpResponse • Defined in an app’s views.py file
  • 15. Hello World View from django.http import HttpResponse def hello_world(request): return HttpResponse("Hello World")
  • 16. Latest Posts View from django.shortcuts import render from blog.models import BlogPost def get_latest_posts(request): today = datetime.datetime.now() posts = BlogPost.objects.filter(is_published=True). filter(publish_date__lte=today). order_by('-publish_date') return render( request, 'blog/latest_posts.html', {'posts':posts})
  • 17. Post Detail View from django.shortcuts import render, get_object_or_404 from blog.models import BlogPost def blog_post_detail(request, slug): post = get_object_or_404(BlogPost, slug=slug) return render( request, "blog/blogpost_detail.html", {"post":post})
  • 18. URL Routes • Defines the URLs used in your project • Maps a URL to a View Function • Defined using Regular Expressions • Defined in an app’s urls.py file.
  • 19. URL Example urlpatterns = patterns('', url(r'^latest_posts/$', 'blog.views.get_latest_posts', name='blog_blogpost_latest'), url(r'^post/(?P<slug>[-w]+)/$', 'blog.views.blog_post_detail', name='blog_blogpost_detail'), )
  • 20. Templates • Describes the Presentation of your data • Separates Logic from Presentation • Simple Syntax • Designer Friendly • Supports Reuse through inheritance and inclusion • Blocks allow child templates to insert content into parent templates
  • 21. Template Syntax • Variables: {{variable-name}} • Tags: Perform logic {% include “_form.html” %} • Filters: Operate on data {{post.publish_date|date:"m/d/Y"}}
  • 22. Template “base.html” <html> <head> <title>{% block title %}{% endblock %}My Site</title> <link rel="stylesheet" href="{{STATIC_URL}}css/screen.css" media="screen, projection"/> </head> <body> <h1>My test site</h1> {% block content %} {% endblock %} </body> </html>
  • 23. Template “latest_posts.html” {% extends "base.html" %} {% block title %}Latest Blog Posts - {% endblock %} {% block content %} <h2>Latest Blog Posts</h1> {% for p in posts %} <h3><a href="{% url blog_blogpost_detail p.slug %}">{{p.title}}</a></h3> <p><strong>Published:</strong> {{p.publish_date|date:"m/d/Y"}} </p> <div class="content"> {{p.content|safe}} </div> {% endfor %} {% endblock %} List of Template Tags and Filters: https://docs.djangoproject.com/en/dev/ref/templates/builtins/
  • 24. The admin • Not a CMS • Allows site admins to edit content • Auto CRUD views for your models • Easy to customize • Optional. If you don’t like it you can write your own
  • 28. The admin • add django.contrib.admin to INSTALLED_APPS • Uncomment admin import, discover, and url pattern from PROJECTS urls.py • Create an admin.py file for each app you want to manage
  • 29. Sample admin.py from django.contrib import admin class BlogPostAdmin(admin.ModelAdmin): list_display = ('title', 'publish_date', 'is_published') list_filter = ('is_published', 'publish_date') search_fields = ('title', 'content') admin.site.register(BlogPost, BlogPostAdmin)
  • 30. Other Stuff • Forms • Caching • Testing
  • 31. Resources • Official Django Tutorial https://docs.djangoproject.com/en/dev/intro/tutorial01/ • Django Documentation https://docs.djangoproject.com/ • The Django Book http://www.djangobook.com/ • Practical Django Projects https://docs.djangoproject.com/ • Pro Django http://prodjango.com/
  • 32. Thank You Wade Austin http://wadeaustin.com @k_wade_a

Editor's Notes

  • #2: Ask audience questions.\nWho knows Python?\nWho here has used Django?\nExperience building websites / web development?\nOther webdev frameworks?\n
  • #3: Framework created in 2005 at a newspaper Lawrence Kansas\nCreated out of a need to develop sites fast on a real-world news cycle\nTasked with creating sites at journalism deadline. Be able to launch sites is hours / days as opposed to weeks / months.\nDjango is Python, if you are learning Django you are learning Python.\n\nWhat is a web-framework? It makes routine development tasks easier by using shortcuts.\nExamples: Database CRUD, form processing, clean urls, etc.\nOpinionated about the right way to do things, makes doing things that way easier \nNot a CMS.\n
  • #4: \n
  • #5: \n
  • #6: Projects are your site\n
  • #7: Projects/Sites tend to have lots of applications\nApps are pieces of re-use.\nApps should be small, sites are made up of lots of apps\n
  • #8: \n
  • #9: Describes the types of data your apps have and what fields/attributes those types have\nModels map one-to-one to DB tables\nDB neutral. Hides SQL (unless you need it) SQLite for development, PostGres for production\nsyncdb installs all models listed in INSTALLED_APPS\n\n
  • #10: \n
  • #11: \n
  • #12: Fields for different data types\nCharField short string\nDateTime, Time, Date fields for date/time information\nTextField for larger text information\nBoolean, Integer, Float for example\nForeignKey, ManyToMany, OneToOne for relationships\n\nwell documented online\n
  • #13: \n
  • #14: Filters can be chained.\nQuery is not executed until the result is operated so calling filter multi times is not a penalty.\nFields to Query are escaped to prevent against SQL Injection\n
  • #15: A python function that accepts an HttpRequest and returns a HttpResponse\n
  • #16: \n
  • #17: View is a function (or any callable) accepts a HttpRequest object and returns a HttpResponse object\nQuerying BlogPost to get a list of posts that are marked as published and their publish date is not in the future.\nUses a Django shortcut function called render that takes a response, a template name, and dictionary of objects and returns\na response that renders the given template using the dictionary\n\n
  • #18: \n
  • #19: \n
  • #20: 2 URL patters 1 for the latest posts, 1 for post detail\npost detail uses a regex to capture a keyword argument to the view function (slug)\nThe name argument is a unique string to identify a url pattern. Usually named (appname_model_view) to keep from clashes\nUseful so you can reference a URL by its name not hardcode the URL. Decouples the url. allows you to change url and not break stuff\n
  • #21: Templates can inherit from base template for reuse and include sub templates (i.e. a common form template)\n
  • #22: \n
  • #23: Simple HTML layout\nblocks are where inherited templates can generate output\n2 Blocks: title (for page title) &amp; content (for body content)\n
  • #24: extends the base template\nAdds its base title as just text output\nIterates over each blog posts that was passed in from our view\nPrints out the title, the date formated, and the content|safe\nDjango escapes all HTML output in a template, must mark a field as &amp;#x201C;safe&amp;#x201D; before it is rendered.\n
  • #25: Admin is not a CMS. Not intended for end uses.\nUseful by site editors/admins to edit data of your models.\nProvides a quick interface for basic site information editing.\nFor many sites it is enough.\nCan be customized.\n
  • #26: \n
  • #27: List edit screen. \nsearch at the top, filters on the right\n
  • #28: \n
  • #29: \n
  • #30: Imports Django admin module\nCreates a simple class for the model we want to administer\nSimple things you can do in an admin class. Fields displayed on the list page, fields you can filter by in the admin, fields you can search on.\nMany more customizations listed in docs.\nRegisters that models with the admin class it belongs to\n
  • #31: \n
  • #32: \n
  • #33: \n