Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Mastering Python High Performance
Mastering Python High Performance

Mastering Python High Performance: Learn how to optimize your code and Python performance with this vital guide to Python performance profiling and benchmarking

eBook
$9.99 $39.99
Paperback
$48.99
Subscription
Free Trial
Renews at $19.99p/m

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Table of content icon View table of contents Preview book icon Preview Book

Mastering Python High Performance

Left arrow icon Right arrow icon

Description

Simply knowing how to code is not enough; on mission-critical pieces of code, every bit of memory and every CPU cycle counts, and knowing how to squish every bit of processing power out of your code is a crucial and sought-after skill. Nowadays, Python is used for many scientific projects, and sometimes the calculations done in those projects require some serious fine-tuning. Profilers are tools designed to help you measure the performance of your code and help you during the optimization process, so knowing how to use them and read their output is very handy. This book starts from the basics and progressively moves on to more advanced topics. You’ll learn everything from profiling all the way up to writing a real-life application and applying a full set of tools designed to improve it in different ways. In the middle, you’ll stop to learn about the major profilers used in Python and about some graphic tools to help you make sense of their output. You’ll then move from generic optimization techniques onto Python-specific ones, going over the main constructs of the language that will help you improve your speed without much of a change. Finally, the book covers some number-crunching-specific libraries and how to use them properly to get the best speed out of them. After reading this book, you will know how to take any Python code, profile it, find out where the bottlenecks are, and apply different techniques to remove them.

What you will learn

  • Master code optimization stepbystep and learn how to use different tools
  • Understand what a profiler is and how to read its output
  • Interpret visual output from profiling tools and improve the performance of your script
  • Use Cython to create fast applications using Python and C
  • Take advantage of PyPy to improve performance of Python code
  • Optimize numbercrunching code with NumPy, Numba, Parakeet, and Pandas

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Sep 09, 2015
Length: 260 pages
Edition : 1st
Language : English
ISBN-13 : 9781783989317
Category :
Languages :

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Product Details

Publication date : Sep 09, 2015
Length: 260 pages
Edition : 1st
Language : English
ISBN-13 : 9781783989317
Category :
Languages :

Packt Subscriptions

See our plans and pricing
Modal Close icon
$19.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
$199.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick icon Exclusive print discounts
$279.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total $ 152.97
Mastering Python High Performance
$48.99
Python 3 Object-Oriented Programming - Second Edition
$54.99
Mastering Python Design Patterns
$48.99
Total $ 152.97 Stars icon
Banner background image

Table of Contents

9 Chapters
1. Profiling 101 Chevron down icon Chevron up icon
2. The Profilers Chevron down icon Chevron up icon
3. Going Visual – GUIs to Help Understand Profiler Output Chevron down icon Chevron up icon
4. Optimize Everything Chevron down icon Chevron up icon
5. Multithreading versus Multiprocessing Chevron down icon Chevron up icon
6. Generic Optimization Options Chevron down icon Chevron up icon
7. Lightning Fast Number Crunching with Numba, Parakeet, and pandas Chevron down icon Chevron up icon
8. Putting It All into Practice Chevron down icon Chevron up icon
Index Chevron down icon Chevron up icon

Customer reviews

Rating distribution
Full star icon Full star icon Full star icon Full star icon Half star icon 4.2
(5 Ratings)
5 star 20%
4 star 80%
3 star 0%
2 star 0%
1 star 0%
Its Me Hara Jun 09, 2018
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Good item. Good book for Python developer
Amazon Verified review Amazon
Duncan W. Robinson Oct 16, 2015
Full star icon Full star icon Full star icon Full star icon Empty star icon 4
Though I’ve programmed in R for some time, I am relatively new to Python. “Mastering Python High Performance” helped me with some Python syntax issues. I found Chapter 4 “Optimize Everything”, which includes coverage on dictionary lookups, list comprehensions & miscellaneous tips / tricks, the most useful. Chapter 5 was also interesting as it helped me understand the pros & cons of multithreading versus multiprocessing. Overall, I found this a helpful & informative text for a Python programmer with some prior experience in the language.
Amazon Verified review Amazon
Mike Driscoll Oct 15, 2015
Full star icon Full star icon Full star icon Full star icon Empty star icon 4
When I was originally reading this book, I was interested in seeing how the author would speed up their code. He covers a wide variety of topics which is good, but that also hampers the book as none of the topics are covered in depth. He uses lots of small examples and shows how to profile before moving on to optimizing them. Let’s go over each of the chapters so you can get a taste of what the book covers. Full disclosure: I was a technical reviewer of the book for Packt.Chapter one is all about profiling your code. It covers the differences between statistical and event-based profiling, what profiling is and why it’s important, bottlenecks and memory leaks. It also goes over running time complexity (linear, factorial, quadratic, etc) and profiling best practices.Then we logically move into chapter two where we learn about some profilers we can use with Python. The two that are covered are cProfile (included with Python) and line_profiler. The author demonstrates various ways to use cProfile to measure your code and also how to use Python’s pstats module, which is used for analyzing the results you receive from cProfile. Then the author moves on to using line_profiler and kernprof to analyze the same (or similar) examples used with cProfile. I think this is one of the best balanced chapters in the book and really quite interesting all by itself.Chapter three goes into using visual tools to help you understand your profiler’s output. In this chapter, you will learn about KCacheGrind / pyprof2calltree and RunSnakeRun. For the most part, you’ll just learn how to use these tools to figure out what your data means.In chapter four, we learn about optimizing your code. Topics covered are memoization, list comprehensions, generators, ctypes, loading your own custom C library, and some others tips and tricks. While this chapter is short, it has some good ideas and is worth reading or at least skimming.Chapter five digs into multithreading and multiprocessing. You’ll learn about the pros and cons of each. You will also learn about the Global Interpreter Lock and how that affects you when you choose one of these techniques.Chapter six goes into using PyPy and Cython and how they can be useful for additional optimizations to your code. I enjoyed this chapter, although I didn’t feel that PyPy got as much attention as Cython. There also weren’t very many coding examples.If you’re into number crunching, then chapter seven is for you. It goes over how to use Numba, Parakeet and pandas. Quite frankly, out of the three of libraries, I had only ever heard of pandas. I personally don’t need to do a lot of number crunching in my line of work, but it was interesting to see how each of the libraries worked and get a general idea of what they could be used for.Finally in chapter eight, the author attempts to put it all together. This chapter probably should have been twice as long as it is so that he could have actually covered everything. But in the end, it covers just barely enough and you do get to see a full example get optimized from beginning to end.Overall, I enjoyed this book. I would recommend this to anyone who needs ideas for optimizing their Python code or just for learning about profiling in general.
Amazon Verified review Amazon
Adriano Ribeiro Jan 23, 2016
Full star icon Full star icon Full star icon Full star icon Empty star icon 4
I think ththis book is a practical for impatients programmers. For me, the most interesting chapters were 4:Optimize Everything, 6:Generic Optimization Options and 7:Lightning Fast Number Crunching with Numba, Parakeet, and pandas. Very good start point.
Amazon Verified review Amazon
Chris Dec 01, 2015
Full star icon Full star icon Full star icon Full star icon Empty star icon 4
Mastering Python High Performance is a worthwhile buy for python programmers who are looking to take their skills to a new level. It gives you a pretty good explanation of how the code is executed when it is run which can be useful for anyone who wants to have more in depth knowledge of computing. If I had one gripe it would be it seems to rush into the topic a bit too quickly and jumps into algorithm and doesn’t sufficiently go over the topic. Overall, “High Performance Python” is a vast topic and this book does a good enough job getting into the finer points of python coding.
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

How do I buy and download an eBook? Chevron down icon Chevron up icon

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website? Chevron down icon Chevron up icon

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook? Chevron down icon Chevron up icon
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support? Chevron down icon Chevron up icon

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks? Chevron down icon Chevron up icon
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook? Chevron down icon Chevron up icon

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.