Programming Python focuses on advanced uses of the Python programming/scripting language, which has evolved from an emerging language of interest primarily to pioneers, to a widely accepted tool that traditional programmers use for real day-to-day development tasks. With Python, you can do almost anything you can do with C++; but Python is an interpreted language designed for rapid application development and deployment. Among other things, Python supports object-oriented programming; a remarkably simple, readable, and maintainable syntax; integration with C components; and a vast collection of pre-coded interfaces and utilities.As Python has grown to embrace developers on a number of different platforms (Unix, Linux, Windows, Mac), companies have taken notice and are adopting Python for their products. It has shown up animating the latest Star Wars movie, serving up maps and directories on the Internet, guiding users through Linux installations, testing chips and boards, managing Internet discussion forums, scripting online games, and even scripting wireless products.Programming Python is the most comprehensive resource for advanced Python programmers available today. Reviewed and endorsed by Python creator Guido van Rossum, who also provides the foreword, this book zeroes in on real-world Python applications. It's been updated for Python 2.0 and covers Internet scripting, systems programming, Tkinter GUIs, C integration domains, and new Python tools and applications. Among them: IDLE, JYthon, Active Scripting and COM extensions, Zope, PSP server pages, restricted execution mode, the HTMLgen and SWIG code generators, thread support, CGI and Internet protocol modules. Such applications are the heart and soul of this second edition.Veteran O'Reilly author Mark Lutz has included a platform-neutral CD-ROM with book examples and various Python-related packages, including the full Python 2.0 source code distribution.
Le informazioni nella sezione "Riassunto" possono far riferimento a edizioni diverse di questo titolo.
Mark Lutz is an independent Python trainer, writer, and software developer, and is one of the primary figures in the Python community. He is the author of the O'Reilly books Programming Python and Python Pocket Reference (both in 2nd Editions), and co-author of Learning Python (both in 2nd Editions). Mark has been involved with Python since 1992, began teaching Python classes in 1997, and has instructed over 90 Python training sessions as of early 2003. In addition, he holds BS and MS degrees in computer science from the University of Wisconsin, and over the last two decades has worked on compilers, programming tools, scripting applications, and assorted client/server systems. Whenever Mark gets a break from spreading the Python word, he leads an ordinary, average life with his kids in Colorado. Mark can be reached by email at , or on the web at http://www.rmi.net/~lutz.
Foreword; Preface; “And Now for Something Completely Different . . . Again”; Signs of the Python Times; Why This Edition?; Major Changes in This Edition; Using the Examples and Demos; Conventions Used in This Book; Where to Look for Updates; Contacting O’Reilly; Acknowledgments; Chapter 1: Introducing Python; 1.1 “And Now for Something Completely Different”; 1.2 The Life of Python; 1.3 The Compulsory Features List; 1.4 What’s Python Good For?; 1.5 What’s Python Not Good For?; System Interfaces; Chapter 2: System Tools; 2.1 “The os.path to Knowledge”; 2.2 Why Python Here?; 2.3 System Scripting Overview; 2.4 The sys Module; 2.5 The os Module; 2.6 Script Execution Context; 2.7 Current Working Directory; 2.8 Command-Line Arguments; 2.9 Shell Environment Variables; 2.10 Standard Streams; 2.11 File Tools; 2.12 Directory Tools; Chapter 3: Parallel System Tools; 3.1 “Telling the Monkeys What to Do”; 3.2 Forking Processes; 3.3 Threads; 3.4 Program Exits; 3.5 Interprocess Communication; 3.6 Pipes; 3.7 Signals; 3.8 Launching Programs on Windows; 3.9 Other System Tools; Chapter 4: Larger System Examples I; 4.1 “Splits and Joins and Alien Invasions”; 4.2 Splitting and Joining Files; 4.3 Generating Forward-Link Web Pages; 4.4 A Regression Test Script; 4.5 Packing and Unpacking Files; 4.6 User-Friendly Program Launchers; Chapter 5: Larger System Examples II; 5.1 “The Greps of Wrath”; 5.2 Fixing DOS Line Ends; 5.3 Fixing DOS Filenames; 5.4 Searching Directory Trees; 5.5 Visitor: Walking Trees Generically; 5.6 Copying Directory Trees; 5.7 Deleting Directory Trees; 5.8 Comparing Directory Trees; GUI Programming; Chapter 6: Graphical User Interfaces; 6.1 “Here’s Looking at You, Kid”; 6.2 Python GUI Development Options; 6.3 Tkinter Overview; 6.4 Climbing the GUI Learning Curve; 6.5 The End of the Tutorial; 6.6 Python/Tkinter for Tcl/Tk Converts; Chapter 7: A Tkinter Tour, Part 1; 7.1 “Widgets and Gadgets and GUIs, Oh My!”; 7.2 Configuring Widget Appearance; 7.3 Toplevel Windows; 7.4 Dialogs; 7.5 Binding Events; 7.6 Message and Entry; 7.7 Checkbutton, Radiobutton, and Scale; 7.8 Running GUI Code Three Ways; 7.9 Images; Chapter 8: A Tkinter Tour, Part 2; 8.1 “On Today’s Menu: Spam, Spam, and Spam”; 8.2 Menus; 8.3 Listboxes and Scrollbars; 8.4 Text; 8.5 Canvas; 8.6 Grids; 8.7 Time Tools, Threads, and Animation; 8.8 The End of the Tour; 8.9 The PyDemos and PyGadgets Launchers; Chapter 9: Larger GUI Examples; 9.1 “Building a Better Mouse Trap”; 9.2 Advanced GUI Coding Techniques; 9.3 Complete Program Examples; 9.4 PyEdit: A Text Editor Program/Object; 9.5 PyView: An Image and Notes Slideshow; 9.6 PyDraw: Painting and Moving Graphics; 9.7 PyClock: An Analog/Digital Clock Widget; 9.8 PyToe: A Tic-Tac-Toe Game Widget; 9.9 Where to Go from Here; Internet Scripting; Chapter 10: Network Scripting; 10.1 “Tune in, Log on, and Drop out”; 10.2 Plumbing the Internet; 10.3 Socket Programming; 10.4 Handling Multiple Clients; 10.5 A Simple Python File Server; Chapter 11: Client-Side Scripting; 11.1 “Socket to Me!”; 11.2 Transferring Files over the Net; 11.3 Processing Internet Email; 11.4 The PyMailGui Email Client; 11.5 Other Client-Side Tools; Chapter 12: Server-Side Scripting; 12.1 “Oh What a Tangled Web We Weave”; 12.2 What’s a Server-Side CGI Script?; 12.3 Climbing the CGI Learning Curve; 12.4 The Hello World Selector; 12.5 Coding for Maintainability; 12.6 More on HTML and URL Escapes; 12.7 Sending Files to Clients and Servers; Chapter 13: Larger Web Site Examples I; 13.1 “Things to Do When Visiting Chicago”; 13.2 The PyMailCgi Web Site; 13.3 The Root Page; 13.4 Sending Mail by SMTP; 13.5 Reading POP Email; 13.6 Utility Modules; 13.7 CGI Script Trade-offs; Chapter 14: Larger Web Site Examples II; 14.1 “Typos Happen”; 14.2 The PyErrata Web Site; 14.3 The Root Page; 14.4 Browsing PyErrata Reports; 14.5 Submitting PyErrata Reports; 14.6 PyErrata Database Interfaces; 14.7 Administrative Tools; 14.8 Designing for Reuse and Growth; Chapter 15: Advanced Internet Topics; 15.1 “Surfing on the Shoulders of Giants”; 15.2 Zope: A Web Publishing Framework; 15.3 HTMLgen: Web Pages from Objects; 15.4 JPython ( Jython): Python for Java; 15.5 Grail: A Python-Based Web Browser; 15.6 Python Restricted Execution Mode; 15.7 XML Processing Tools; 15.8 Windows Web Scripting Extensions; 15.9 Python Server Pages; 15.10 Rolling Your Own Servers in Python; Assorted Topics; Chapter 16: Databases and Persistence; 16.1 “Give Me an Order of Persistence, but Hold the Pickles”; 16.2 Persistence Options in Python; 16.3 DBM Files; 16.4 Pickled Objects; 16.5 Shelve Files; 16.6 SQL Database Interfaces; 16.7 PyForm: A Persistent Object Viewer; Chapter 17: Data Structures; 17.1 “Roses Are Red, Violets Are Blue; Lists Are Mutable, and So Is Class Foo”; 17.2 Implementing Stacks; 17.3 Implementing Sets; 17.4 Binary Search Trees; 17.5 Graph Searching; 17.6 Reversing Sequences; 17.7 Permuting Sequences; 17.8 Sorting Sequences; 17.9 Data Structures Versus Python Built-ins; 17.10 PyTree: A Generic Tree Object Viewer; Chapter 18: Text and Language; 18.1 “See Jack Hack. Hack, Jack, Hack”; 18.2 Strategies for Parsing Text in Python; 18.3 String Module Utilities; 18.4 Regular Expression Matching; 18.5 Parser Generators; 18.6 Hand-Coded Parsers; 18.7 PyCalc: A Calculator Program/Object; Integration; Chapter 19: Extending Python; 19.1 “I Am Lost at C”; 19.2 C Extensions Overview; 19.3 A Simple C Extension Module; 19.4 The SWIG Integration Code Generator; 19.5 Wrapping C Environment Calls; 19.6 A C Extension Module String Stack; 19.7 A C Extension Type String Stack; 19.8 Wrapping C++ Classes with SWIG; Chapter 20: Embedding Python; 20.1 “Add Python. Mix Well. Repeat.”; 20.2 C Embedding API Overview; 20.3 Basic Embedding Techniques; 20.4 Registering Callback Handler Objects; 20.5 Using Python Classes in C; 20.6 ppembed: A High-Level Embedding API; 20.7 Other Integration Topics; The End; Chapter 21: Conclusion: Python and the Development Cycle; 21.1 “That’s the End of the Book, Now Here’s the Meaning of Life”; 21.2 “Something’s Wrong with the Way We Program Computers”; 21.3 The “Gilligan Factor”; 21.4 Doing the Right Thing; 21.5 Enter Python; 21.6 But What About That Bottleneck?; 21.7 On Sinking the Titanic; 21.8 So What’s Python: The Sequel; 21.9 In the Final Analysis...; 21.10 Postscript to the Second Edition; Recent Python Changes; Major Changes in 2.0; Major Changes in 1.6; Major Changes Between 1.3 and 1.5.2; Pragmatics; Installing Python; Book Examples Distribution; Environment Configuration; Running Python Programs; Python Internet Resources; Python Versus C++; Colophon;
Le informazioni nella sezione "Su questo libro" possono far riferimento a edizioni diverse di questo titolo.
GRATIS per la spedizione in U.S.A.
Destinazione, tempi e costiEUR 6,21 per la spedizione in U.S.A.
Destinazione, tempi e costiDa: Better World Books: West, Reno, NV, U.S.A.
Condizione: Good. 2nd Edition. Used book that is in clean, average condition without any missing pages. Codice articolo 4329071-6
Quantità: 2 disponibili
Da: ThriftBooks-Dallas, Dallas, TX, U.S.A.
Paperback. Condizione: Good. No Jacket. Pages can have notes/highlighting. Spine may show signs of wear. ~ ThriftBooks: Read More, Spend Less 3.68. Codice articolo G0596000855I3N00
Quantità: 1 disponibili
Da: ThriftBooks-Phoenix, Phoenix, AZ, U.S.A.
Paperback. Condizione: Fair. No Jacket. Readable copy. Pages may have considerable notes/highlighting. ~ ThriftBooks: Read More, Spend Less 3.68. Codice articolo G0596000855I5N00
Quantità: 1 disponibili
Da: ThriftBooks-Dallas, Dallas, TX, U.S.A.
Paperback. Condizione: Fair. No Jacket. Readable copy. Pages may have considerable notes/highlighting. ~ ThriftBooks: Read More, Spend Less 3.68. Codice articolo G0596000855I5N00
Quantità: 1 disponibili
Da: HPB-Red, Dallas, TX, U.S.A.
Paperback. Condizione: 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! Codice articolo S_324819120
Quantità: 1 disponibili
Da: HPB Inc., Dallas, TX, U.S.A.
paperback. Condizione: Very Good. Connecting readers with great books since 1972! Used books may not include companion materials, and may have some shelf wear or limited writing. We ship orders daily and Customer Service is our top priority! Codice articolo S_417138413
Quantità: 1 disponibili
Da: HPB-Diamond, Dallas, TX, U.S.A.
Paperback. Condizione: Very Good. Connecting readers with great books since 1972! Used books may not include companion materials, and may have some shelf wear or limited writing. We ship orders daily and Customer Service is our top priority! Codice articolo S_412316736
Quantità: 1 disponibili
Da: Half Price Books Inc., Dallas, TX, U.S.A.
paperback. Condizione: Very Good. Connecting readers with great books since 1972! Used books may not include companion materials, and may have some shelf wear or limited writing. We ship orders daily and Customer Service is our top priority! Codice articolo S_431122564
Quantità: 1 disponibili
Da: HPB-Ruby, Dallas, TX, U.S.A.
Paperback. Condizione: Very Good. Connecting readers with great books since 1972! Used books may not include companion materials, and may have some shelf wear or limited writing. We ship orders daily and Customer Service is our top priority! Codice articolo S_435645372
Quantità: 1 disponibili
Da: WorldofBooks, Goring-By-Sea, WS, Regno Unito
Paperback. Condizione: Very Good. This text focuses on advanced uses of the Python programming/scripting language, which has evolved from an emerging language of interest primarily to pioneers, to a widely accepted tool that traditional programmers use for real day-to-day development tasks. With Python, you can do almost anything you can do with C++; but Python is an interpreted language designed for rapid application development and deployment. Among other things, Python supports object-oriented programming; a remarkably simple, readable, and maintainable syntax; integration with C components; and a vast collection of pre-coded interfaces and utilities. As Python has grown to embrace developers on a number of different platforms (Unix, Linux, Windows, Mac), companies have taken notice and are adopting Python for their products. It has shown up animating the latest "Star Wars" movie, serving up maps and directories on the internet, guiding users through Linux installations, testing chips and boards, managing Internet discussion forums, scripting online games, and even scripting wireless products. This text provides a comprehensive resource for advanced Python programmers. Reviewed and endorsed by Python creator Guido van Rossum, who also provides the foreword, this book zeroes in on real-world Python applications. Updated for Python 2.0, it covers Internet scripting, systems programming, Tkinter GUIs, C integration domains, and new Python tools and applications. Among them: IDLE; JYthon; Active Scripting and COM extensions; Zope; PSP server pages; restricted execution mode; the HTMLgen and SWIG code generators; thread support; CGI; and Internet protocol modules. The text includes a platform-neutral CD-ROM with book examples and various Python-related packages, including the full Python 2.0 source code distribution. The book has been read, but is in excellent condition. Pages are intact and not marred by notes or highlighting. The spine remains undamaged. Codice articolo GOR001704237
Quantità: 6 disponibili