BJCCSWD / python-education

Reading list for ramping up with professional Python

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Table of Contents

Ramping up with professional Python

The goal of this documentation is to help you become a productive Python developer.

It assumes that those skills will be used in a professional environment. It includes concrete exercises, because the best way to learn is by doing. It focuses on real-world, applied documentation that will help your programming on a day-to-day basis.

This doc assumes programming knowledge and experience.

If you're also interested in generic programming best practices, I've compiled a list of professional programming resources.

Learning the language

Beginner

First, Why Beginners Should Learn Python

Here are some free books:

  • Learn Python the Hard Way: slow introduction, suitable for people with limited programming language experience.
  • Dive Into Python: much faster introduction to Python, a bit outdated but will get you ramped up really fast, especially if you've learned a number of programming language in the past. There's a version for Python 3 as well.
  • Official Tutorial: Python's official doc is really good, highly recommended read.

The Python Guide has some other good resources.

If you're coming from another language, read this article about the ten myths of enterprise Python.

If you want to review algorithms at the same time, you can use Problem Solving with Algorithms and Data Structures using Python by Bradley N. Miller, David L. Ranum.

Other resources include (prefer the one listed above):

To find other list of resources:

Learn Python online – A curated list of courses on Python

Intermediate

An introduction to advanced Python

I wrote some introductory material to advanced Python:

Articles, videos and presentations

Books

Writing idiomatic Python

First things first, let's get code styling out of the way. Make sure you've read an memorized PEP8 (code style, more readable version here) and PEP257 (docstring style). Those two code styles are applied by almost all major Python applications and libraries. Use flake8 and autopep8.

What is called "idiomatic Python" might feel magical at first, especially if you don't know Python. I'd recommend getting your hands dirty with some real world Python code. Try to wander around the code, opening random files. Run the tutorial with a debugger to follow the flow and understand what's going on.

  • bottle.py: bottle is a web framework. It's a great resource because it's in all in whole file! Recommended reading. You can even print it.
  • flask: another web framework, one of the best. Reading its code is highly recommended as well.

You can find other ideas on this hacker news thread.

I feel it's more important to understand the vision behind Python's design, than to know specific Python idioms. The Zen of Python will let you understand the fundamental reasoning behind each idiom.

>>> import this
The Zen of Python, by Tim Peters

Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is better than nested.
Sparse is better than dense.
Readability counts.
Special cases aren't special enough to break the rules.
Although practicality beats purity.
Errors should never pass silently.
Unless explicitly silenced.
In the face of ambiguity, refuse the temptation to guess.
There should be one-- and preferably only one --obvious way to do it.
Although that way may not be obvious at first unless you're Dutch.
Now is better than never.
Although never is often better than *right* now.
If the implementation is hard to explain, it's a bad idea.
If the implementation is easy to explain, it may be a good idea.
Namespaces are one honking great idea -- let's do more of those!

Learning idiomatic Python:

List of books:

Exercises

The best way to learn is to do.

Small exercises

  • Create a virtual environment with virtualenv.
  • Create a virtual environment with virtualenvwrapper tools.
  • Fix a bug in one of the Python packages listed in the Python guide.
  • Create a server exposing a Thrift API.
  • Take inspiration from this list of Raspberry Pi projects on reddit

Larger projects

  • Discover Flask
  • Build a lock library for redis.
  • Build a cache library for redis.
  • Build an API for next bus departure time.
  • Build an ORM for a SQL database.
  • Build a command line parser.
  • Build a template engine.
  • Build a static site generator.
  • Build an HTTP library.
  • Clone one of those games
  • Solve some of the Project Euler problems
  • Write a game using pyarcade

Reddit's dailyprogrammer subreddit has some good exercises as well.

Another great way to learn Python is by contributing to one of the numerous open source libraries. Coding is not something that is to be learn in isolation, and you'll learn great valuable insights from the code review you'll get from those communities. You can look for tickets (e.g. Github issues) for Python libraries you're using, or find some in the list below, or pick one of the libraries listed in Awesome Python. Make sure you pick a library where the tickets are not too involved, and where the community is still alive (i.e. there's recent merged pull requests).

Ramping up with specific libraries

Regardless of whether you use them, those tutorials introduce you to important concept and good design patterns, so they're highly recommended:

Other great SQLAlchemy resources include:

Other specific libraries that are very often used in professional environments:

  • Celery is an asynchronous task queue/job queue based on distributed message passing. It is focused on real-time operation, but supports scheduling as well.
  • Tornado is a Python web framework and asynchronous networking library.
  • Alembic is a lightweight database migration tool for usage with the SQLAlchemy Database Toolkit for Python.
  • Jinja is a full featured template engine for Python. It has full unicode support, an optional integrated sandboxed execution environment, widely used and BSD licensed.
  • Doubles is a Python package that provides test doubles for use in automated tests.
  • Mock is a library for testing in Python. It allows you to replace parts of your system under test with mock objects and make assertions about how they have been used.
  • pytest is a test framework.

Awesome Python provides a great list of third party libraries.

Topics

Best Practices

Celery

Code Architecture

Debugging

Design patterns

I maintain a list of antipatterns on another repo. This is a highly recommended read.

Functional code

Internals

Learning to learn

Magic methods

Open source Python programs

It's often a good idea to read the Python source code of well-written applications:

Packages (finding them)

Packaging & pip

Performance optimization

Python and beyond

Quirks and gotchas

Static analysis of code

Tests

Half of coding time is usually spent writing tests. Yet how to write tests efficiently is very rarely taught at school - even though it came make a huge difference in engineering productivity and quality.

First, make sure you're familiar with the different kind of testing strategies laid out in Testing Strategies in a Microservices Architecture (Martin Fowler).

Then, read some of those articles:

Types

Unicode

Reference and other lists

Staying up to date

There are two main newsletters for Python, which mostly cover the same things:

You can also checkout the Python subreddit.

Non-Python professional coding education

Read this up on my professional programming doc.

If you want to get in touch, checkout my website.

About

Reading list for ramping up with professional Python

License:MIT License


Languages

Language:Python 100.0%