Worthy Read
python has come a long way. So has job hunting.

Get in front of 4,000+ companies with one application. No more pushy recruiters, no more dead end applications and mismatched companies.
Sponsor
Daniel Bader: Sublime Text for Python development ― My 2016 review
sublime
When you ask for editor recommendations as a Python developer one of the top choices you’ll hear about is Sublime Text. In this post I’ll review the status of Python development with Sublime Text as of 2016.
Episode 69 - PyCon Canada with Francis Deslauriers and Peter McCormick
podcast
This week we interviewed Peter McCormick and Francis Deslauriers about their work organizing PyCon Canada to provide a venue for Canadians to talk about how they are using the language. If you happen to be near Toronto in November then you should get a ticket and help contribute to their success.
1M rows/s from Postgres to Python
benchmark
asyncpg is a new fully-featured open-source Python client library for PostgreSQL. It is built specifically for asyncio and Python 3.5 async / await. asyncpg is the fastest driver among common Python, NodeJS and Go implementations.
Package of the Week: Flake8
Flake8 is a Python library that wraps PyFlakes, pycodestyle and Ned Batchelder’s McCabe script. It is a great toolkit for checking your code base against coding style (PEP8), programming errors (like “library imported but unused” and “Undefined name”) and to check cyclomatic complexity.
Brett Cannon: Network protocols, sans I/O
(Hopefully) the future of network protocols in Python. I think it's important to promote this approach to implementing network protocols, to the point that I have created a page at https://sans-io.readthedocs.io/ to act as a reference of libraries that have followed the approach I've outlined here. Basically what this means is that network protocol libraries will need to be rewritten so that they can be used by both synchronous and asynchronous I/O .
Setting up a Honey Pot with django-admin-honeypot
django
Security is something we often ignore until it is too late. However, there are some things you can do right now that are easy to increase your security. Using django-admin-honeypot is one of those things you can do. It is super easy and provides you with the means of tracking who is trying to access your site.
Things You Must Know About Django Admin As Your App Gets Bigger
django admin panel
The Django admin is a very powerful tool. We use it for day to day operations, browsing data and support. As we grew some of our projects from zero to 100K+ users we started experiencing some of Django’s admin pain points?―?long response times and heavy load on the database.
Introduction to Natural Language Processing with Python - Asyncjs
video
In this talk, Jess Bowden introduces the area of NLP (Natural Language Processing) and a basic introduction of its principles. She uses Python and some of its fundamental NLP packages, such as NLTK, to illustrate examples and topics, demonstrating how to get started with processing and analysing Natural Languages. She also looks at what NLP can be used for, a broad overview of the sub-topics, and how to get yourself started with a demo project.
Simon: datetime vs Arrow vs Pendulum vs Delorean vs udatetime
datetime
I setup a benchmark, which can be found here to compare Python datetime, Arrow, Pendulum, Delorean and udatetime on a performance level. I picked 4 typical performance critical operations to measure the speed of those libraries. Decode a date-time string, Encode (serialize) a date-time string, Instantiate object with current time in UTC, Instantiate object with current time in local timezone, Instantiate object from timestamp in UTC, Instantiate object from timestamp in local timezone.
PyPy gets funding from Mozilla for Python 3.5 support
community
Mozilla recently decided to award $200,000 to Baroque Software to work on PyPy as part of its Mozilla Open Source Support (MOSS) initiative. This money will be used to implement the Python 3.5 features in PyPy. Within the next year, we plan to use the money to pay four core PyPy developers half-time to work on the missing features and on some of the big performance and cpyext issues.
Your Django Story: Meet Katerina Kampardi
djangogirls
Katerina Kampardi is a Web Applications Developer from Greece who works as a freelancer. Like many aspiring developers, Katerina is self-taught and got her start with online tutorials. She later attended a Python Specialization. Today, she works on various Django projects as an independent developer.
Upcoming Conference / User Group Meet
Python Unconference 2016

Kiwi PyCon

PyCon JP 2016

PyCon ZA 2016

PyCon PL 2016

PyCon CZ 2016

PyCon DE 2016

Projects
colornet - 1885 Stars, 67 Fork
Neural Network to colorize grayscale images
tflearn - 1313 Stars, 50 Fork
Deep learning library featuring a higher-level API for TensorFlow.
DeepDreamVideo - 773 Stars, 94 Fork
implementing deep dream on video
dcgan-completion.tensorflow - 54 Stars, 9 Fork
Image Completion with Deep Learning in TensorFlow
fastText.py - 44 Stars, 3 Fork
fasttext is a Python interface for Facebook fastText.
NBA-Player-Movements - 37 Stars, 3 Fork
Visualization of NBA games from raw SportVU logs
pic2text - 15 Stars, 12 Fork
A script to transform picture to text
NaiveBayesClassifier - 3 Stars, 1 Fork
Naive bayes classifier implement with Python 2.7