1. Home
  2. About
  3. Tag index

Highlights from PyCon US 2012 lecture videos (part 1)

Published 11 Mar 2012

This year’s PyCon US, the “largest annual gathering for the community using and developing the open-source Python programming language”, as the event’s website puts it, featured a wide range of interesting presentations directed to people with varying degrees of familiarity with language and associated technologies.

The videos for the lectures were released online a couple of days ago, so having not been able to witness the presentations first-hand, I decided to watch and comment some of those that caught my attention. And it was definitely worthwile!

I’ll split this into a series of posts, as there is quite a bit of material to be covered.

Let’s start with a couple of introductory lectures and an intermediate one. The lecture titles are links to the actual videos, be sure to check them out.

Introduction to PDB

Chris McDonough gives an introductory talk on PDB, the Python Debugger.

Lots of people aren’t really used to the idea of a specialized tool for debugging Python code: it sometimes just sounds a lot easier to sprinkle log or print statements all around the code to track its execution and state.

While this approach can be perfectly valid in some scenarios, a debugger generally provides much more powerful tools that can make a difference when tackling a really elusive bug.

This lecture teaches the basics of PDB, a resourceful Python debugger that shares many features with good old GDB, the GNU Debugger. It would be very nice for every Python programmer to at least learn the basics of PDB, if only to consider sprinkling the following snippet instead of print statements in their code:

# some safe code here

# load PDB prompt
# let's proceed carefully
import pdb
pdb.set_trace()

# some dangerous code here

A noob speaks to noobs: your first site in the cloud

Katie Cuningham, a Python and Django developer with zero sysadmin background, tells the tale of her first incursions into hosting a few personal sites in the cloud.

An entertaining talk by a charismatic speaker, and although I didn’t find her advice to be really essential, it was nice to learn about her use of Fabric, a promising project I hadn’t known before.

Python epiphanies

Stuart Williams gives a lecture targeted at software developers with a background in statically typed languages and some experience with Python aiming to clarify some common pitfalls and seemingly counterintuitive behavior in the language.

Even though it is targeted at intermediate level developers, beginners might benefit from the fact that the lecture starts slowly and builds on basic concepts like the oppositions between variables (as in little boxes that contain values) versus namespaces (which map names to objects), global versus local scope and mutable versus immutable objects.

The second half of the lecture picks up speed and briefly visits decorators before plunging into (meta) classes. The distinctions between classes and objects and bound and unbound methods are carefully explained with plenty of examples. Definitely worth watching if you’re not entirely sure why the following snippet prints 4 and 6 before crashing with a TypeError:

class Num(object):
    def __init__(self, amount):
        self.amount = amount

    def double(self):
        return self.amount * 2

def triplicate(self):
    return self.amount * 3

num2 = Num(2)
print num2.double()

Num.double = triplicate
print num2.double()

num2.double = triplicate
print num2.double()

Finally, the talk discusses iterators, generators and the mechanics behind for loops (consider watching if the name “StopIteration” doesn’t ring a bell) and closes with two cute examples of how dicts may be used to blur the line between code and data.

And that’s it for the first part. I still have a few lectures in the watch queue, which is certainly enough for a couple more installments of this series, so check back often!


Toggle Comments
Tags:
blog comments powered by Disqus