Python tutorials

Find slow data processing tasks (before your customers do)

Here are some of the ways you can discover your data processing jobs are too slow: Jobs start getting killed when they hit timeouts. Customers start complaining about slow or failed jobs. Your cloud computing bill is twice what it was last month. While these notification mechanisms do work, it’s probably best not to rely on them. Life is easier when jobs finish successfully, customers are happy, and you have plenty of money left over in your budget. That means […]

Read more

Custom Python Strings: Inheriting From str vs UserString

The Python str class has many useful features that can help you out when you’re processing text or strings in your code. However, in some situations, all these great features may not be enough for you. You may need to create custom string-like classes. To do this in Python, you can inherit from the built-in str class directly or subclass UserString, which lives in the collections module. In this tutorial, you’ll learn how to: Create custom string-like classes by inheriting […]

Read more
1 85 86 87 88 89 191