Skip to content

ebezzam/python-dev-tips

Repository files navigation

pydevtips, Slides

Documentation Status Unit tests and formatting

Reproducibility is important for software: if it's not reproducible, it's not useful. Even if you don't plan on sharing your code, imagine coming back to a project after a few weeks, or having to install it on a new machine. You'll be all the more thankful to your past self if you have a clear way to install and run your code.

This repository is a collection of tips and tricks for developing stable and reproducible Python code. There is a slight focus on scientific computing, but the general principles can apply to most Python projects. If you're reading this from GitHub, please check out the documentation for a more in-depth explanation of the topics covered.

The intended audience is myself (as I often find myself going to past projects to find how I did something!), but also for students and anyone who is interested in learning some new tricks or even sharing their own! I try to follow the principles laid out here on development and reproducibility, so feel free to point out any lapses or suggest improvements, either by opening an issue or pull request.

As is typical in open source, there are many ways to do the same thing. But hopefully this gives you a starting point. Feel free to pick and choose the features that you like. This flexibility is one of the best (and worst parts) of open source. Some of the things we cover:

  • Virtual environments.
  • Version control.
  • Reproducible examples.
  • Documentation.
  • Code formatting.
  • Unit tests and continuous integration.
  • Packaging and distribution.
  • Remove development.

The accompanying slides are from a tutorial given at ENS Ulm (January 2023). Feel free to modify and use it for your own purposes.

Note

A good amount of this documentation and code is written with GitHub Copilot, which I highly recommend for development. If you don't like writing documentation, it is a great way to get started as it is able to understand the functionality of your code and produce meaningful text to describe it. It should be used be used with caution, but it can be a great tool for getting started and you often you need to make a few tweaks (like the previous repetition). But it's a huge time-saver!

Installation

This "dummy" package can be installed with pip:

pip install pydevtips

Or from source, e.g. with Anaconda / Miniconda:

# create new environment, press enter to accept
conda create -n project_env python=3.11

# view available environments
conda info --envs

# activate environment
conda activate project_env

# install package locally
(project_env) pip install -e .

# run tests
# - one time: pip install pytest
(project_env) pytest

# deactivate environment
(project_env) conda deactivate

Examples

Examples can be found in the examples and notebooks folders. Scripts from the examples folder should be run from the root of the repository, e.g.:

python examples/real_convolve.py

Parameter setting is done with hydra. More on that in the :ref:`Reproducible examples<Reproducible examples>` section of the documentation.

TODO

  • numba: https://numba.pydata.org/
  • picking a license
  • badge for google slides
  • change documentation links to main branch
  • github page
  • point out features in scripts: object-oriented, asserts, tqdm, type hints
  • matplotlib, pytest, black in dev install
  • manifest file to not include file in package
  • GitHub actions for releasing to PyPi when changes to version
  • pytorch compatible
  • Cython / C++