PSF: Introducing electronic contributor agreements(python.org) You can now fill out contributor agreements electronically. All contributors to CPython are required to fill out the form so if you planning on contributing during the sprints at PyCon you should check this out.
pynacl(github.com) Python bindings for the NaCL Networking and Cryptography library.
django-sslserver(github.com) Want to test some SSL in your Django development server? If so you should check out django-sslserver a SSL enabled devserver for Django. Setup is as simple as adding it to your INSTALLED_APPS.
django-fancy-cache(peterbe.com) Django-fancy-cache is Django’s `cache_page` on steroids. Plenty of updated features in here like overriding the cache prefix with a callable, cache invalidation by url pattern and serve from cache but modify the response before it is returned. It also keeps stats of cache hits and misses and plenty of other things too. Check out the post for all the details.
motor(github.com) Motor is a non-blocking MongoDB driver for Python Tornado applications.
bakthat(github.com) Bakthat is a MIT licensed backup framework written in Python, it's both a command line tool and a Python module that helps you manage backups on Amazon S3/Glacier.
python-lust (github.com) Implements the basics of creating a proper modern daemon on a Unix system in Python.
PYCODER'S JOBS
Looking for an awesome employer? Looking to hire incredible python development talent? You will definitely want to checkout the Pycoder's Job Board.
Python for Ruby Programmers (speakerdeck.com) Pretty cool slide deck comparing the differences between Python and Ruby. Some bold statements ahead, but definitely a good read.
Threading in Python(nryoung.org) This is an introductory article on using Python’s threading and Queue modules for multithreaded systems, the article does forget to mention GIL, which everyone should be concerned with when working with threads in Python
Taking Some Pain Out Of Python Logging(hynek.me) Hate having to maintain various logging tools, and making sure they are all in sync? This article shows you a few ways to take advantage of some tools that have been around forever to get the job done easily.
Fixing Database Connections in Django (craigkerstiens.com) This article shows you how to deal with the overhead of constantly opening new database connections for each new request in Django. This has since been fixed in Django 1.6 which work has just commenced on, but until then this article definitely worth the read comparing a few ways to solve the problem.