null
Loading... Please wait...
FREE SHIPPING on All Unbranded Items LEARN MORE
Print This Page

Practices of the Python Pro

List Price: $49.99
SKU:
9781617296086
Quantity:
Minimum Purchase
25 unit(s)
  • Availability: Confirm prior to ordering
  • Branding: minimum 50 pieces (add’l costs below)
  • Check Freight Rates (branded products only)

Branding Options (v), Availability & Lead Times

  • 1-Color Imprint: $2.00 ea.
  • Promo-Page Insert: $2.50 ea. (full-color printed, single-sided page)
  • Belly-Band Wrap: $2.50 ea. (full-color printed)
  • Set-Up Charge: $45 per decoration
FULL DETAILS
  • Availability: Product availability changes daily, so please confirm your quantity is available prior to placing an order.
  • Branded Products: allow 10 business days from proof approval for production. Branding options may be limited or unavailable based on product design or cover artwork.
  • Unbranded Products: allow 3-5 business days for shipping. All Unbranded items receive FREE ground shipping in the US. Inquire for international shipping.
  • RETURNS/CANCELLATIONS: All orders, branded or unbranded, are NON-CANCELLABLE and NON-RETURNABLE once a purchase order has been received.
  • Product Details

    Author:
    Dane Hillard
    Format:
    Paperback
    Pages:
    248
    Publisher:
    Manning (January 14, 2020)
    Language:
    English
    ISBN-13:
    9781617296086
    ISBN-10:
    1617296082
    Weight:
    14.48oz
    Dimensions:
    7.38" x 9.25" x 0.5"
    File:
    Eloquence-SimonSchuster_05022026_P10038138_onix30_Complete-20260502.xml
    Folder:
    Eloquence
    List Price:
    $49.99
    Case Pack:
    34
    As low as:
    $44.99
    Publisher Identifier:
    P-SS
    Discount Code:
    G
    Pub Discount:
    37
    Imprint:
    Manning
  • Overview

    Summary


    Professional developers know the many benefits of writing application code that’s clean, well-organized, and easy to maintain. By learning and following established patterns and best practices, you can take your code and your career to a new level.
    With Practices of the Python Pro, you’ll learn to design professional-level, clean, easily maintainable software at scale using the incredibly popular programming language, Python. You’ll find easy-to-grok examples that use pseudocode and Python to introduce software development best practices, along with dozens of instantly useful techniques that will help you code like a pro.

    Purchase of the print book includes a free eBook in PDF, Kindle, and ePub formats from Manning Publications.

    About the technology



    Professional-quality code does more than just run without bugs. It’s clean, readable, and easy to maintain. To step up from a capable Python coder to a professional developer, you need to learn industry standards for coding style, application design, and development process. That’s where this book is indispensable.

    About the book



    Practices of the Python Pro teaches you to design and write professional-quality software that’s understandable, maintainable, and extensible. Dane Hillard is a Python pro who has helped many dozens of developers make this step, and he knows what it takes. With helpful examples and exercises, he teaches you when, why, and how to modularize your code, how to improve quality by reducing complexity, and much more. Embrace these core principles, and your code will become easier for you and others to read, maintain, and reuse.

    What's inside



     
    • Organizing large Python projects
    • Achieving the right levels of abstraction
    • Writing clean, reusable code Inheritance and composition
    • Considerations for testing and performance

     

    About the reader



    For readers familiar with the basics of Python, or another OO language.

    About the author



    Dane Hillard has spent the majority of his development career using Python to build web applications.

     

    Table of Contents:

    PART 1 WHY IT ALL MATTERS

    1 ¦ The bigger picture

    PART 2 FOUNDATIONS OF DESIGN

    2 ¦ Separation of concerns

    3 ¦ Abstraction and encapsulation

    4 ¦ Designing for high performance

    5 ¦ Testing your software

    PART 3 NAILING DOWN LARGE SYSTEMS

    6 ¦ Separation of concerns in practice

    7 ¦ Extensibility and flexibility

    8 ¦ The rules (and exceptions) of inheritance

    9 ¦ Keeping things lightweight

    10 ¦ Achieving loose coupling

    PART 4 WHAT’S NEXT?

    11 ¦ Onward and upward