Book Image

Expert Python Programming - Third Edition

By : Michał Jaworski, Tarek Ziadé
Book Image

Expert Python Programming - Third Edition

By: Michał Jaworski, Tarek Ziadé

Overview of this book

Python is a dynamic programming language that's used in a wide range of domains thanks to its simple yet powerful nature. Although writing Python code is easy, making it readable, reusable, and easy to maintain is challenging. Complete with best practices, useful tools, and standards implemented by professional Python developers, the third edition of Expert Python Programming will help you overcome this challenge. The book will start by taking you through the new features in Python 3.7. You'll then learn the advanced components of Python syntax, in addition to understanding how to apply concepts of various programming paradigms, including object-oriented programming, functional programming, and event-driven programming. This book will also guide you through learning the naming best practices, writing your own distributable Python packages, and getting up to speed with automated ways to deploy your software on remote servers. You’ll discover how to create useful Python extensions with C, C++, Cython, and CFFI. Furthermore, studying about code management tools, writing clear documentation, and exploring test-driven development will help you write clean code. By the end of the book, you will have become an expert in writing efficient and maintainable Python code.
Table of Contents (25 chapters)
Free Chapter
1
Section 1: Before You Start
4
Section 2: Python Craftsmanship
12
Section 3: Quality over Quantity
16
Section 4: Need for Speed
20
Section 5: Technical Architecture
23
reStructuredText Primer

Module and package names

The module and package names inform about the purpose of their content. The names are short, in lowercase, and usually without underscores, for example:

  • sqlite
  • postgres
  • sha1

They are often suffixed with lib if they are implementing a protocol, as in the following:

import smtplib 
import urllib 
import telnetlib

When choosing a name for a module, always consider its content and limit the amount of redundancy within the whole namespace, for example:

from widgets.stringwidgets import TextWidget  # bad 
from widgets.strings import TextWidget        # better 

When a module is getting complex and contains a lot of classes, it is a good practice to create a package and split the module's elements into other modules.

The __init__ module can also be used to put back some common APIs at the top level of the package. This approach allows you to organize the...