Top Banner
THE EXPERT’S VOICE ® IN WEB DEVELOPMENT The Definitive Guide to Web Development Done Right SECOND EDITION Adrian Holovaty and Jacob Kaplan-Moss Benevolent Dictators for Life, Django Django is a framework that saves you time and makes Web development a joy Updated for Django 1.1 Updated for Django 1.1
538

The definitive guide to django

Jan 27, 2015

Download

Documents

sodbilego

 
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript

"print "Books"print "

  • "connection = MySQLdb.connect(user=me, passwd=letmein, db=my_db)cursor = connection.cursor()cursor.execute("SELECT name FROM books ORDER BY pub_date DESC LIMIT 10")for row in cursor.fetchall():print "
  • %s" % row[0]print "

"print "