Strona główna
  [Python] Beginning Python From ...

[Python] Beginning Python From Novice To Professional 2008, Python, Django

[ Pobierz całość w formacie PDF ]
Beginning Python
From Novice to Professional,
Second Edition
■■■
Magnus Lie Hetland
Beginning Python: From Novice to Professional, Second Edition
Copyright © 2008 by Magnus Lie Hetland
All rights reserved. No part of this work may be reproduced or transmitted in any form or by any means,
electronic or mechanical, including photocopying, recording, or by any information storage or retrieval
system, without the prior written permission of the copyright owner and the publisher.
ISBN-13 (pbk): 978-1-59059-982-2
ISBN-10 (pbk): 1-59059-982-9
ISBN-13 (electronic): 978-1-4302-0634-7
Printed and bound in the United States of America 9 8 7 6 5 4 3 2 1
Trademarked names may appear in this book. Rather than use a trademark symbol with every occurrence
of a trademarked name, we use the names only in an editorial fashion and to the benefit of the trademark
owner, with no intention of infringement of the trademark.
Lead Editor: Frank Pohlmann
Technical Reviewers: Gregg Bolinger, Richard Taylor
Editorial Board: Clay Andres, Steve Anglin, Ewan Buckingham, Tony Campbell, Gary Cornell, Jonathan
Gennick, Matthew Moodie, Joseph Ottinger, Jeffrey Pepper, Frank Pohlmann, Ben Renow-Clarke,
Dominic Shakeshaft, Matt Wade, Tom Welsh
Project Manager: Richard Dal Porto
Copy Editor: Marilyn Smith
Associate Production Director: Kari Brooks-Copony
Production Editor: Liz Berry
Compositor: Pat Christenson
Proofreader: April Eddy
Indexer: John Collin
Cover Designer: Kurt Krames
Manufacturing Director: Tom Debolski
Distributed to the book trade worldwide by Springer-Verlag New York, Inc., 233 Spring Street, 6th Floor,
New York, NY 10013. Phone 1-800-SPRINGER, fax 201-348-4505, e-mail
orders-ny@springer-sbm.com
, or
visit
.
For information on translations, please contact Apress directly at 2855 Telegraph Avenue, Suite 600,
Berkeley, CA 94705. Phone 510-549-5930, fax 510-549-5939, e-mail
info@apress.com
, or visit
www.apress.com
.
Apress and friends of ED books may be purchased in bulk for academic, corporate, or promotional use.
eBook versions and licenses are also available for most titles. For more information, reference our Special
Bulk Sales–eBook Licensing web page at
.
The information in this book is distributed on an “as is” basis, without warranty. Although every precaution
has been taken in the preparation of this work, neither the author(s) nor Apress shall have any liability to
any person or entity with respect to any loss or damage caused or alleged to be caused directly or indirectly
by the information contained in this work.
The source code for this book is available to readers at
.
Contents at a Glance
About the Author
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xxiii
About the Technical Reviewer
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .xxv
Preface
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xxvii
Introduction
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xxix

CHAPTER 1
Instant Hacking: The Basics
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1

CHAPTER 2
Lists and Tuples
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 31

CHAPTER 3
Working with Strings
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 53

CHAPTER 4
Dictionaries: When Indices Won’t Do
. . . . . . . . . . . . . . . . . . . . . . . . . . 69

CHAPTER 5
Conditionals, Loops, and Some Other Statements
. . . . . . . . . . . . . . 83

CHAPTER 6
Abstraction
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 113

CHAPTER 7
More Abstraction
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 141

CHAPTER 8
Exceptions
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 161

CHAPTER 9
Magic Methods, Properties, and Iterators
. . . . . . . . . . . . . . . . . . . . . 175

CHAPTER 10
Batteries Included
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 209

CHAPTER 11
Files and Stuff
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 261

CHAPTER 12
Graphical User Interfaces
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 277

CHAPTER 13
Database Support
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 293

CHAPTER 14
Network Programming
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 305

CHAPTER 15
Python and the Web
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 321

CHAPTER 16
Testing, 1-2-3
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 349

CHAPTER 17
Extending Python
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 365

CHAPTER 18
Packaging Your Programs
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 383

CHAPTER 19
Playful Programming
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 393

CHAPTER 20
Project 1: Instant Markup
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 403

CHAPTER 21
Project 2: Painting a Pretty Picture
. . . . . . . . . . . . . . . . . . . . . . . . . . . 425

CHAPTER 22
Project 3: XML for All Occasions
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . 435

CHAPTER 23
Project 4: In the News
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 453
iv

CHAPTER 24
Project 5: A Virtual Tea Party
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 469

CHAPTER 25
Project 6: Remote Editing with CGI
. . . . . . . . . . . . . . . . . . . . . . . . . . . 489

CHAPTER 26
Project 7: Your Own Bulletin Board
. . . . . . . . . . . . . . . . . . . . . . . . . . . 499

CHAPTER 27
Project 8: File Sharing with XML-RPC
. . . . . . . . . . . . . . . . . . . . . . . . 517

CHAPTER 28
Project 9: File Sharing II—Now with GUI!
. . . . . . . . . . . . . . . . . . . . . 537

CHAPTER 29
Project 10: Do-It-Yourself Arcade Game
. . . . . . . . . . . . . . . . . . . . . . 547

APPENDIX A
The Short Version
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 569

APPENDIX B
Python Reference
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 579

APPENDIX C
Online Resources
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 595

APPENDIX D
Python 3.0
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 599

INDEX
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 607
v
[ Pobierz całość w formacie PDF ]
  • zanotowane.pl
  • doc.pisz.pl
  • pdf.pisz.pl
  • smichy-chichy.xlx.pl


  •  Podobne
     : Strona Główna
     : 01 2008 auto technika motoryzacyjna atm, Auto Technika Motoryzacyjna
     : Świat według Monsanto - The World According to Monsanto (2008), ● Dokumentalne
     : -[ How to rip Dynamic Flash Template ]-, Moj Dysk, 1000 Hacker Tutorials 2008
     : [2008] Dzień W Którym Zatrzymała Się Ziemia - The Day the Earth Stood Stil,
     : !Warunki Techniczne 17 XII 2008, certyfikaty energetyczne
     : Zdarzenie - The Happening [2008] CAM, ● Napisy
     : #0876 – Preparing a Professional Portfolio, - Ang, mater, ESL Podcast McQuillan Jeff mp3+PDF
     : #0604 – Harming a Professional Reputation, - Ang, mater, ESL Podcast McQuillan Jeff mp3+PDF
     : [Django] Practical Django Projects [Apress], Python, Django
     : 00.DQH37, DarQ Hits vol.37
  • zanotowane.pl
  • doc.pisz.pl
  • pdf.pisz.pl
  • trzydziestkaa.pev.pl
  •  . : : .
    Copyright (c) 2008 póki będą na świecie książki, moje szczęście jest zabezpieczone. | Designed by Elegant WPT