All Projects → charlax → Python Education

charlax / Python Education

Licence: mit
Reading list for ramping up with professional Python

Programming Languages

python
139335 projects - #7 most used programming language

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:

  • Official Tutorial: Python's official doc is really good, highly recommended read.
  • 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.

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):

Intermediate

I wrote some introductory material to advanced Python:

Articles, videos and presentations

Books

Lists of books:

Writing idiomatic Python

First things first, let's get code style out of the way. Make sure you've read and 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, autopep8 and black to ensure they are applied.

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 help 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.

Code practice websites

Small exercises

Larger projects

  • Build a lock library for Redis.
  • Build a cache library for Redis.
  • Build an API for storing todos
  • 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
  • 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).

My exercises

Check them out in learning-python/exercises.

Topics

Algorithms

Best Practices

Celery

Celery is a distributed async tasks runner.

Code Architecture

Configuration

  • Best Practices for Working with Configuration in Python Applications
    • Use identifiers rather than string keys to access configuration values.
    • Use static typing
    • Validate early.
    • Declare close to where it is used.
  • Doing Python Configuration Right
    • Static things that don't change often, or things that dramatically influence the behavior of the system should live in the code.
    • Dynamic things that change frequently, or things that should be kept secret (API keys/credentials) should live outside the code.

Debugging

Deployment

Design patterns

I maintain a list of antipatterns on this repo.

File organisation (monorepo, folders, etc.)

Functional code

Internals

Magic methods

Open source Python apps

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

SQLAlchemy

SQLAlchemy is the de facto standard ORM for Python. It has a unique approach: contrary to most ORM, it tries very hard not to hide the SQL implementation details from you. This is great because it forces you to really understand the underlying DB.

Here is some slightly outdated content that is super useful to fully leverage the library:

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:

  • Mock yourself, not your tests: great articles about the danger of mocking, and better unit testing strategies.
  • Building Good Tests, Chris NeJame
    • 1 assert per test function/method and nothing else
    • Use standard assert statements, instead of the unittest.TestCase assert methods
    • Test behavior, not implementation
    • Only verify state-changing method calls
    • Test the result, not the process
    • Every test should be able to be run in parallel with any other test
    • A test should never be flaky
    • Try to avoid mocking things whenever possible.
    • Test coverage is not a metric for what was tested; it’s a metric for what code your tests managed to hit
    • The code should be easy to test * Make your test code succinct and idiomatic
  • pytest is a test framework. It's very elegant and allows to quickly write very maintainable tests.

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].