Using the simple, robust, Python-based Django framework, you can build powerful Web solutions with remarkably few lines of code. In Python Web Development with Django®, three experienced Django and Python developers cover all the techniques, tools, and concepts you need to make the most of Django 1.0, including all the major features of the new release.
 
The authors teach Django through in-depth explanations, plus provide extensive sample code supported with images and line-by-line explanations. You&;ll discover how Django leverages Python&;s development speed and flexibility to help you solve a wide spectrum of Web development problems and learn Django best practices covered nowhere else. You&;ll build your first Django application in just minutes and deepen your real-world skills through start-to-finish application projects including
 
This complete guide starts by introducing Python, Django, and Web development concepts, then dives into the Django framework, providing a deep understanding of its major components (models, views, templates), and how they come together to form complete Web applications. After a discussion of four independent working Django applications, coverage turns to advanced topics, such as caching, extending the template system, syndication, admin customization, and testing. Valuable reference appendices cover using the command-line, installing and configuring Django, development tools, exploring existing Django applications, the Google App Engine, and how to get more involved with the Django community.
 
 
Introduction 1
 
Part I: Getting Started
Chapter 1: Practical Python for Django 7
Chapter 2: Django for the Impatient: Building a Blog 57
Chapter 3: Starting Out 77
 
Part II: Django in Depth
Chapter 4: Defining and Using Models 89
Chapter 5: URLs, HTTP Mechanisms, and Views 117
Chapter 6: Templates and Form Processing 135
 
Part III: Django Applications by Example
Chapter 7: Photo Gallery 159
Chapter 8: Content Management System 181
Chapter 9: Liveblog 205
Chapter 10: Pastebin 221
 
Part IV: Advanced Django Techniques and Features
Chapter 11: Advanced Django Programming 235
Chapter 12: Advanced Django Deployment 261
 
Part V: Appendices
Appendix A: Command Line Basics 285
Appendix B: Installing and Running Django 295
Appendix C: Tools for Practical Django Development 313
Appendix D: Finding, Evaluating, and Using Django Applications 321
Appendix E: Django on the Google App Engine 325
Appendix F: Getting Involved in the Django Project 337
 
Index 339
Colophon 375
"synopsis" may belong to another edition of this title.
Jeffrey E. Forcier currently works as a systems administrator and backend Web developer at Digital Pulp, Inc., a New York-based interactive agency and Web development company. He has 7 years experience in Web development with PHP and Python, including professional and personal use of the Django framework since its public release in 2005. He holds a degree in Computer Science from the University of Massachusetts.
Paul Bissex has worked as a graphic designer, writer, teacher, babysitter, and software developer. He was an early adopter of Django and is the creator and maintainer of dpaste.com, the Django community pastebin site. From September to June, he can be found at the Hallmark Institute of Photography (hallmark.edu), teaching Web development and using Python and Django to build everything from attendance systems to housing databases to image processing utilities. His writings on technology have appeared in Wired, Salon.com, and the Chicago Tribune. Since 1996, he has served as a conference host for The Well (well.com), which Wired magazine called "the world's most influential online community," and currently hosts the Web conference there. He lives in Northampton, Massachusetts, with his wife Kathleen.
Wesley J. Chun is author of Prentice Hall's bestselling "Core Python" series (corepython.com), the Python Fundamentals companion video lectures, co-author of Python Web Development with Django (withdjango.com), and has written for Linux Journal, CNET, and InformIT. In addition to being an architect and Developer Advocate at Google, he runs CyberWeb (cyberwebconsulting.com), a consultancy specializing in Python training. He has over 25 years of programming, teaching, and writing experience, including more than a decade of Python. While at Yahoo!, he helped create Yahoo! Mail and Yahoo! People Search using Python. He holds degrees in Computer Science, Mathematics, and Music from the University of California.
Preface
Greetings, and welcome to Django! We're glad to have you along on our journey. You will discover a powerful tool that lets you do everything rapidly—from designing and developing the original app and being able to make simple and quick changes that have a profound effect on its features and functionality without having to make major changes to the codebase.
There are already several Django books on the market, but ours differs from most in that we focus equally on three areas: Django basics, a variety of example applications, and advanced Django topics. Our intent is to make this the most well-rounded book on the subject, one you find useful regardless of background, and which will give you a complete picture of the framework and what you can do with it.
In Figure 0.1, you see recommended starting points for your reading depending on your Python and Django experience. Of course, we recommend a cover-to-cover treatment, but the diagram serves to help if time is not on your side. Regardless of your experience, you are always welcome to look at the applications because reading and studying code is one of the best ways to learn. Below the figure, we provide a chapter-by-chapter reading guide to further help direct you to where you need to read.
Figure 0.1
Part I, "Getting Started," covers the basic material needed to introduce users new to Django and/or Python, although we recommend Chapter 3, "Starting Out," even to advanced readers.
Chapter 1, "Practical Python for Django," is meant to introduce our readers who are new to Python. In one comprehensive chapter, we show you not only the syntax, but also go a bit more in-depth and expose you to Python's memory model and data types, especially constructs which are commonly used in Django.
Chapter 2, "Django for the Impatient: Building a Blog," is a "getting started" chapter for those who want to skip any Python introduction and want to dive immediately into a Django application that can be completed in 15-20 minutes. It gives a good overview of what's possible with the framework.
For those with a bit more patience, Chapter 3, "Starting Out," serves as an introduction to all of the foundations of developing Web-based applications (useful both for newbies and experienced coders alike). Once the formalities are over, we describe how each concept fits into the world of Django as well as what its philosophies are and how it may differ from other Web application frameworks.
Part II, "Django in Depth," covers all the basic components of the framework, laying the foundation for the example applications in Part III, " Django Applications by Example."
In Chapter 4, "Defining and Using Models," learn how to define and work with your data model, including the basics of Django's object-relational mapper (ORM) from simple fields up to complex relations.
Chapter 5, "URLs, HTTP Mechanisms, and Views," goes into detail on how Django handles URL processing and the rest of the HTTP protocol, including middleware layers, as well as how to use Django's time-saving generic views, and how to write custom or partially custom views from scratch.
Chapter 6, "Templates and Form Processing," is the final major piece of the framework, where we explore Django's template language and its form-handling mechanisms. It covers how to display data to your users and get data back from them.
In Part III, "Django Applications by Example," we create four distinct applications, each highlighting a different aspect or component of Django development, both to introduce new general ideas and to expand upon the concepts found in Parts I and II.
In Chapter 7, "Photo Gallery," learn how to apply the "Don't Repeat Yourself" convention to your URL structure and create a new thumbnail-creating image form field, while you make a simple photo gallery application.
Chapter 8, "Content Management System," contains two related approaches to creating a CMS or CMS-like system and covers the use of a number of "contrib" Django applications.
Chapter 9, "Liveblog," covers writing a "liveblog"—a site that makes use of advanced JavaScript techniques—serves as a backdrop for applying AJAX to a Django project and shows how easy it is to use any AJAX toolkit you want.
In Chapter 10, "Pastebin," learn the power of Django's generic views as we create a pastebin using almost no custom logic whatsoever.
Part IV, "Advanced Django Techniques and Features," is a collection of advanced topics, ranging from customizing Django's admin application to writing command-line scripts which interface with your Django applications.
Chapter 11, "Advanced Django Programming," covers a number of topics related to fleshing out your own application's code, such as RSS generation, extending the template language, or making better use of the Django admin application.
In Chapter 12, "Advanced Django Deployment," learn a number of tricks related to deploying Django applications or working with your app from outside your Django project's core code, such as command-line scripts, cron jobs, testing, or data import.
Part V, "Appendices," fills in the remaining gaps or addresses topics relevant to the rest of the book but which don't fit in well as full chapters. Learn the basics of the Unix command line, Django installation and deployment strategies, tools for development, and more.
Appendix A, "Command Line Basics," is an introduction to the Unix command line for those who haven't been exposed to it before now. Trust us—it's useful!
In Appendix B, "Installing and Running Django," learn how to install all the necessary components for running Django, including the various options for database and Web servers, as well as some tips on specific deployment strategies.
Appendix C, "Tools for Practical Django Development," outlines some basic development tools you may or may not be familiar with, including source control, text editors, and more.
Good developers write code, but great developers reuse somebody else's code! In Appendix D, "Finding, Evaluating, and Using Django Applications," we share some tips on the where and how of finding reusable Django applications.
Appendix E, "Django on the Google App Engine ," provides an exclusive look at how Google's new App Engine leverages Django, and you can also learn how to enable your Django applications to run under the App Engine framework.
In Appendix F, "Getting Involved in the Django Project," learn how to contribute to Django and become a part of the community.
Throughout this book, we use bold to introduce new or important terms, italics for emphasis, <http://links/> for URLs, and monospacing to delineate Python and command line material such as variable names or commands. Multiline blocks of code or command examples are in monospaced blocks, like so:
>>> print "This is Python!" This is Python!
We have made use of all three major platforms—Mac OS X, Linux, and Windows—when writing this book and the example applications. In addition, we've used all major browsers (although not all may be present in our screenshots), namely Firefox, Safari, Opera, and Internet Explorer.
You can contact the authors collectively at authors@withdjango.com. Our Web site, http://withdjango.com, contains a large amount of auxiliary material and is referenced in a number of places throughout the book.
© Copyright Pearson Education. All rights reserved.
"About this title" may belong to another edition of this title.
FREE shipping within U.S.A.
Destination, rates & speedsSeller: Better World Books, Mishawaka, IN, U.S.A.
Condition: Good. Former library book; may include library markings. Used book that is in clean, average condition without any missing pages. Seller Inventory # GRP83990096
Quantity: 1 available
Seller: Better World Books, Mishawaka, IN, U.S.A.
Condition: Good. Used book that is in clean, average condition without any missing pages. Seller Inventory # 6210448-6
Quantity: 1 available
Seller: HPB-Red, Dallas, TX, U.S.A.
Paperback. Condition: Good. Connecting readers with great books since 1972! Used textbooks may not include companion materials such as access codes, etc. May have some wear or writing/highlighting. We ship orders daily and Customer Service is our top priority! Seller Inventory # S_300964957
Quantity: 1 available
Seller: ThriftBooks-Atlanta, AUSTELL, GA, U.S.A.
Paperback. Condition: Fair. No Jacket. Readable copy. Pages may have considerable notes/highlighting. ~ ThriftBooks: Read More, Spend Less 1.34. Seller Inventory # G0132356139I5N00
Quantity: 1 available
Seller: ThriftBooks-Dallas, Dallas, TX, U.S.A.
Paperback. Condition: Good. No Jacket. Former library book; Pages can have notes/highlighting. Spine may show signs of wear. ~ ThriftBooks: Read More, Spend Less 1.34. Seller Inventory # G0132356139I3N10
Quantity: 1 available
Seller: ThriftBooks-Atlanta, AUSTELL, GA, U.S.A.
Paperback. Condition: Very Good. No Jacket. May have limited writing in cover pages. Pages are unmarked. ~ ThriftBooks: Read More, Spend Less 1.34. Seller Inventory # G0132356139I4N00
Quantity: 1 available
Seller: ThriftBooks-Atlanta, AUSTELL, GA, U.S.A.
Paperback. Condition: Good. No Jacket. Pages can have notes/highlighting. Spine may show signs of wear. ~ ThriftBooks: Read More, Spend Less 1.34. Seller Inventory # G0132356139I3N00
Quantity: 1 available
Seller: Housing Works Online Bookstore, New York, NY, U.S.A.
Condition: Good. Light general wear. May have light notes/highlighting. shelf wear, bumped corners, scuffed, sticker residue on front, creased corner, stamp from previous owner on book block, sticker on rear, Paperback. Seller Inventory # GU5-01365
Quantity: 1 available
Seller: WorldofBooks, Goring-By-Sea, WS, United Kingdom
Paperback. Condition: Very Good. The book has been read, but is in excellent condition. Pages are intact and not marred by notes or highlighting. The spine remains undamaged. Seller Inventory # GOR004672659
Quantity: 1 available
Seller: Ammareal, Morangis, France
Softcover. Condition: Très bon. Edition 2009. Ammareal reverse jusqu'à 15% du prix net de cet article à des organisations caritatives. ENGLISH DESCRIPTION Book Condition: Used, Very good. Edition 2009. Ammareal gives back up to 15% of this item's net price to charity organizations. Seller Inventory # F-842-085
Quantity: 1 available