Book Image

Daniel Arbuckle's Mastering Python

By : Daniel Arbuckle
Book Image

Daniel Arbuckle's Mastering Python

By: Daniel Arbuckle

Overview of this book

Daniel Arbuckle's Mastering Python covers the basics of operating in a Python development environment, before moving on to more advanced topics. Daniel presents you with real-world solutions to Python 3.6 and advanced-level concepts, such as reactive programming, microservices, ctypes, and Cython tools. You don't need to be familiar with the Python language to use this book, as Daniel starts with a Python primer. Throughout, Daniel highlights the major aspects of managing your Python development environment, shows you how to handle parallel computation, and helps you to master asynchronous I/O with Python 3.6 to improve performance. Finally, Daniel will teach you the secrets of metaprogramming and unit testing in Python, helping you acquire the perfect skillset to be a Python expert. Daniel will get you up to speed on everything from basic programming practices to high-end tools and techniques, things that will help set you apart as a successful Python programmer.
Table of Contents (13 chapters)

Downloading and installing Python

The topic of this section is downloading and installing the Python runtime and standard library. For this, let's first take a look at the download page, https://www.python.org/, which is, of course, the authoritative place to find Python. You will learn a little bit about which versions of Python exist and the one we should choose for this book. Then, we'll move on to how to set up Python for this book. Finally, we'll check that everything worked the way we wanted.

Before we can really begin working with Python, we need to make sure we've got the language interpreter and libraries properly installed. The first step for that is to decide which version of the language to install.

Choosing a suitable version

...