Cargando…

Learning Python design patterns : leverage the power of Python design patterns to solve real-world problems in software architecture and design /

Annotation

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Giridhar, Chetan (Autor)
Formato: Electrónico eBook
Idioma:Inglés
Publicado: Birmingham, UK : Pack Publishing, 2016.
Edición:Second edition.
Colección:Community experience distilled.
Temas:
Acceso en línea:Texto completo (Requiere registro previo con correo institucional)

MARC

LEADER 00000cam a2200000Ii 4500
001 OR_ocn941101389
003 OCoLC
005 20231017213018.0
006 m o d
007 cr cnu---unuuu
008 160226s2016 enka o 001 0 eng d
040 |a UMI  |b eng  |e rda  |e pn  |c UMI  |d TEFOD  |d OCLCF  |d TEFOD  |d IDEBK  |d YDXCP  |d N$T  |d VT2  |d KSU  |d DEBSZ  |d DEBBG  |d OCLCQ  |d COO  |d UOK  |d CEF  |d MQY  |d AGLDB  |d IGB  |d RDF  |d EMU  |d INARC  |d OCLCO  |d OCLCQ  |d QGK  |d OCLCO 
019 |a 940360587  |a 944310605  |a 1259129792 
020 |a 9781785887376  |q electronic bk. 
020 |a 1785887378  |q electronic bk. 
020 |z 9781785888038 
020 |z 178588803X 
029 1 |a DEBSZ  |b 480364893 
029 1 |a DEBBG  |b BV043968957 
029 1 |a DEBSZ  |b 485794691 
029 1 |a GBVCP  |b 882848798 
029 1 |a AU@  |b 000062540148 
029 1 |a AU@  |b 000068967317 
035 |a (OCoLC)941101389  |z (OCoLC)940360587  |z (OCoLC)944310605  |z (OCoLC)1259129792 
050 4 |a QA76.73.P98 
072 7 |a COM  |x 051240  |2 bisacsh 
082 0 4 |a 005.13/3  |2 23 
049 |a UAMI 
100 1 |a Giridhar, Chetan,  |e author. 
245 1 0 |a Learning Python design patterns :  |b leverage the power of Python design patterns to solve real-world problems in software architecture and design /  |c Chetan Giridhar ; foreword by Anand B. Pillai. 
250 |a Second edition. 
264 1 |a Birmingham, UK :  |b Pack Publishing,  |c 2016. 
300 |a 1 online resource :  |b illustrations. 
336 |a text  |b txt  |2 rdacontent 
337 |a computer  |b c  |2 rdamedia 
338 |a online resource  |b cr  |2 rdacarrier 
347 |a text file 
490 1 |a Community experience distilled 
500 |a Includes index. 
588 |a Description based on online resource; title from cover page (Safari, viewed February 26, 2016). 
588 0 |a Print version record. 
520 8 |a Annotation  |b Leverage the power of Python design patterns to solve real-world problems in software architecture and designAbout This Book Understand the structural, creational, and behavioral Python design patterns Get to know the context and application of design patterns to solve real-world problems in software architecture, design, and application development Get practical exposure through sample implementations in Python v3.5 for the design patterns featuredWho This Book Is ForThis book is for Software architects and Python application developers who are passionate about software design. It will be very useful to engineers with beginner level proficiency in Python and who love to work with Python 3.5What You Will Learn Enhance your skills to create better software architecture Understand proven solutions to commonly occurring design issues Explore the design principles that form the basis of software design, such as loose coupling, the Hollywood principle and the Open Close principle among others Delve into the object-oriented programming concepts and find out how they are used in software applications Develop an understanding of Creational Design Patterns and the different object creation methods that help you solve issues in software development Use Structural Design Patterns and find out how objects and classes interact to build larger applications Focus on the interaction between objects with the command and observer patterns Improve the productivity and code base of your application using Python design patternsIn DetailWith the increasing focus on optimized software architecture and design it is important that software architects think about optimizations in object creation, code structure, and interaction between objects at the architecture or design level. This makes sure that the cost of software maintenance is low and code can be easily reused or is adaptable to change. The key to this is reusability and low maintenance in design patterns.Building on the success of the previous edition, Learning Python Design Patterns, Second Edition will help you implement real-world scenarios with Python's latest release, Python v3.5.We start by introducing design patterns from the Python perspective. As you progress through the book, you will learn about Singleton patterns, Factory patterns, and Facade patterns in detail. After this, we'll look at how to control object access with proxy patterns. It also covers observer patterns, command patterns, and compound patterns.By the end of the book, you will have enhanced your professional abilities in software architecture, design, and development.Style and approachThis is an easy-to-follow guide to design patterns with hands-on examples of real-world scenarios and their implementation in Python v3.5. Each topic is explained and placed in context, and for the more inquisitive, there are more details on the concepts used. 
505 0 |a Cover ; Copyright; Credits; Foreword; About the Author; About the Reviewer; www.PacktPub.com; Table of Contents; Preface; Chapter 1: Introduction to Design Patterns ; Understanding object-oriented programming; Objects; Classes; Methods; Major aspects of object-oriented programming; Encapsulation; Polymorphism; Inheritance; Abstraction; Composition; Object-oriented design principles; The open/close principle; The inversion of control principle; The interface segregation principle; The single responsibility principle; The substitution principle; The concept of design patterns 
505 8 |a Advantages of design patternsTaxonomy of design patterns; Context -- the applicability of design patterns; Patterns for dynamic languages; Classifying patterns; Creational patterns:; Structural patterns; Behavioral patterns; Summary; Chapter 2: The Singleton Design Pattern ; Understanding the Singleton design pattern; Implementing a classical Singleton in Python; Lazy instantiation in the Singleton pattern; Module-level Singletons; The Monostate Singleton pattern; Singletons and metaclasses; A real-world scenario -- the Singleton pattern, part 1 
505 8 |a A real-world scenario -- the Singleton pattern, part 2Drawbacks of the Singleton pattern; Summary; Chapter 3: Factory Pattern -- Building Factories to Create Objects ; Understanding the Factory pattern; The Simple Factory pattern; The Factory Method pattern; Implementing the Factory Method; Advantages of the Factory method pattern; The Abstract Factory pattern; Implementing the Abstract Factory pattern; The Factory Method versus Abstract Factory; Summary; Chapter 4: The Façade Pattern -- Being Adaptive with Façade ; Understanding Structural design patterns 
505 8 |a Understanding the Façade design patternA UML class diagram; Façade; System; Client; Implementing the Façade pattern in the real world; The principle of least knowledge; Frequently asked questions; Summary; Chapter 5: The Proxy Pattern -- Controlling Object Access ; Understanding the Proxy design pattern; A UML class diagram for the Proxy pattern; Understanding different types of Proxies; A virtual proxy; A remote proxy; A protective proxy; A smart proxy; The Proxy pattern in the real world; Advantages of the Proxy pattern; Comparing the Façade and Proxy patterns; Frequently asked questions 
590 |a O'Reilly  |b O'Reilly Online Learning: Academic/Public Library Edition 
590 |a eBooks on EBSCOhost  |b EBSCO eBook Subscription Academic Collection - Worldwide 
650 0 |a Python (Computer program language) 
650 0 |a Software patterns. 
650 6 |a Python (Langage de programmation) 
650 6 |a Logiciels  |x Modèles de conception. 
650 7 |a COMPUTERS / Software Development & Engineering / Systems Analysis & Design  |2 bisacsh 
650 7 |a Python (Computer program language)  |2 fast 
650 7 |a Software patterns  |2 fast 
776 |z 1-78588-803-X 
830 0 |a Community experience distilled. 
856 4 0 |u https://learning.oreilly.com/library/view/~/9781785888038/?ar  |z Texto completo (Requiere registro previo con correo institucional) 
938 |a Internet Archive  |b INAR  |n learningpythonde0000giri 
938 |a ProQuest MyiLibrary Digital eBook Collection  |b IDEB  |n cis34013833 
938 |a YBP Library Services  |b YANK  |n 12852117 
938 |a EBSCOhost  |b EBSC  |n 1171943 
994 |a 92  |b IZTAP