Book description
Master the art of writing beautiful and powerful Python by using all of the features that Python 3.5 offers
About This Book
- Become familiar with the most important and advanced parts of the Python code style
- Learn the trickier aspects of Python and put it in a structured context for deeper understanding of the language
- Offers an expert's-eye overview of how these advanced tasks fit together in Python as a whole along with practical examples
Who This Book Is For
Almost anyone can learn to write working script and create high quality code but they might lack a structured understanding of what it means to be 'Pythonic'. If you are a Python programmer who wants to code efficiently by getting the syntax and usage of a few intricate Python techniques exactly right, this book is for you.
What You Will Learn
- Create a virtualenv and start a new project
- Understand how and when to use the functional programming paradigm
- Get familiar with the different ways the decorators can be written in
- Understand the power of generators and coroutines without digressing into lambda calculus
- Create metaclasses and how it makes working with Python far easier
- Generate HTML documentation out of documents and code using Sphinx
- Learn how to track and optimize application performance, both memory and cpu
- Use the multiprocessing library, not just locally but also across multiple machines
- Get a basic understanding of packaging and creating your own libraries/applications
In Detail
Python is a dynamic programming language. It is known for its high readability and hence it is often the first language learned by new programmers. Python being multi-paradigm, it can be used to achieve the same thing in different ways and it is compatible across different platforms. Even if you find writing Python code easy, writing code that is efficient, easy to maintain, and reuse is not so straightforward.
This book is an authoritative guide that will help you learn new advanced methods in a clear and contextualised way. It starts off by creating a project-specific environment using venv, introducing you to different Pythonic syntax and common pitfalls before moving on to cover the functional features in Python. It covers how to create different decorators, generators, and metaclasses. It also introduces you to functools.wraps and coroutines and how they work. Later on you will learn to use asyncio module for asynchronous clients and servers. You will also get familiar with different testing systems such as py.test, doctest, and unittest, and debugging tools such as Python debugger and faulthandler. You will learn to optimize application performance so that it works efficiently across multiple machines and Python versions. Finally, it will teach you how to access C functions with a simple Python call. By the end of the book, you will be able to write more advanced scripts and take on bigger challenges.
Style and Approach
This book is a comprehensive guide that covers advanced features of the Python language, and communicate them with an authoritative understanding of the underlying rationale for how, when, and why to use them.
Table of contents
-
Mastering Python
- Table of Contents
- Mastering Python
- Credits
- About the Author
- About the Reviewers
- www.PacktPub.com
- Preface
- 1. Getting Started – One Environment per Project
-
2. Pythonic Syntax, Common Pitfalls, and Style Guide
-
Code style – or what is Pythonic code?
- Formatting strings – printf-style or str.format?
-
PEP20, the Zen of Python
- Beautiful is better than ugly
- Explicit is better than implicit
- Simple is better than complex
- Flat is better than nested
- Sparse is better than dense
- Readability counts
- Practicality beats purity
- Errors should never pass silently
- In the face of ambiguity, refuse the temptation to guess
- One obvious way to do it
- Now is better than never
- Hard to explain, easy to explain
- Namespaces are one honking great idea
- Conclusion
- Explaining PEP8
- Verifying code quality, pep8, pyflakes, and more
- Common pitfalls
- Summary
-
Code style – or what is Pythonic code?
-
3. Containers and Collections – Storing Data the Right Way
- Time complexity – the big O notation
- Core collections
-
Advanced collections
- ChainMap – the list of dictionaries
- counter – keeping track of the most occurring elements
- deque – the double ended queue
- defaultdict – dictionary with a default value
- namedtuple – tuples with field names
- enum – a group of constants
- OrderedDict – a dictionary where the insertion order matters
- heapq – the ordered list
- bisect – the sorted list
- Summary
-
4. Functional Programming – Readability Versus Brevity
- Functional programming
- list comprehensions
- dict comprehensions
- set comprehensions
- lambda functions
- functools
-
itertools
- accumulate – reduce with intermediate results
- chain – combining multiple results
- combinations – combinatorics in Python
- permutations – combinations where the order matters
- compress – selecting items using a list of Booleans
- dropwhile/takewhile – selecting items using a function
- count – infinite range with decimal steps
- groupby – grouping your sorted iterable
- islice – slicing any iterable
- Summary
- 5. Decorators – Enabling Code Reuse by Decorating
- 6. Generators and Coroutines – Infinity, One Step at a Time
- 7. Async IO – Multithreading without Threads
- 8. Metaclasses – Making Classes (Not Instances) Smarter
- 9. Documentation – How to Use Sphinx and reStructuredText
- 10. Testing and Logging – Preparing for Bugs
- 11. Debugging – Solving the Bugs
- 12. Performance – Tracking and Reducing Your Memory and CPU Usage
- 13. Multiprocessing – When a Single CPU Core Is Not Enough
- 14. Extensions in C/C++, System Calls, and C/C++ Libraries
- 15. Packaging – Creating Your Own Libraries or Applications
- Index
Product information
- Title: Mastering Python
- Author(s):
- Release date: April 2016
- Publisher(s): Packt Publishing
- ISBN: 9781785289729
You might also like
book
Mastering Python - Second Edition
Use advanced features of Python to write high-quality, readable code and packages Key Features Extensively updated …
book
Getting Started with Python
Harness the power of Python objects and data structures to implement algorithms for analyzing your data …
book
Mastering Python Design Patterns - Second Edition
Exploit various design patterns to master the art of solving problems using Python Key Features Master …
book
Clean Python: Elegant Coding in Python
Discover the right way to code in Python. This book provides the tips and techniques you …