In this episode, you will learn the basics of using Python's doctest and unittest modules. You can also read the chapter this video is based on here or get the book on Leanpub Related Articles Python 3 Testing: An Intro to unittest Python 102: An Intro to TDD and unittest
According to The Economist, Python is "becoming the world’s most popular coding language". Here's a chart that shows how popular the language is: There's a lot of interesting information in that article and there's some interesting conversation going on in this Reddit thread which is related to the article.
When working with Jupyter Notebook, you will find yourself needing to distribute your Notebook as something other than a Notebook file. The most likely reason is that you want to share the content of your Notebook to non-technical users that don't want to install Python or the other dependencies necessary to use your Notebook. The […]
This week we welcome K Lars Lohn (@2braids) as our PyDev of the Week! He has been a part of the Python community for quite a few years. You can learn a bit more about him over on his blog or by checking out his Github account. Let's spend some time getting to know him […]
In this screencast you will learn the basics of profiling your code using Python's built-in cProfile module. You can read the chapter this screencast is based on here - http://python101.pythonlibrary.org/ or get a copy of the book on Leanpub.
There are several methods of extending the functionality of Jupyter Notebooks. Here are four of them: Kernels IPython kernel extensions Notebook extensions Notebook server extensions For the purposes of this article, I will be focusing on the third item, Notebook Extensions. However, let's take a moment and talk about the other three so that you […]