This is the repo for Python for Data Science.
This README is for developers and contributors. If you're here to read the book, head over to https://aeturrell.github.io/python4DS.
We are very keen to encourage contributors! You can contribute by raising issues with the book or by creating pull requests directly. If you are creating a pull request you will need to install the development environment locally and check the book builds after you've made your changes.
Note that we aim to closely follow the content of R for Data Science (2e).
Before making a pull request you should test that the pre-commit checks pass, including that there are no outputs included, and that the book builds. See below for instructions on how to do these locally.
When you make a pull request, pre-commit and build will run automatically, and fail if there are errors. They are in .github/workflows/tests.yml
.
You will need installations of Python 3.10 and uv. uv can be used to install certain distributions of Python through the uv python install 3.10
command but you can use other Python installations.
Clone this repository.
To install the development environment, run uv sync
from the project root. This should create a .venv/
directory with the Python4DS environment in it. You can check that the environment has been installed by running uv run python -V
in the project root directory.
The book is compiled from source markdown and Jupyter notebook files jupyter-book package.
To build the book, run
uv run jupyter-book build .
Once this command is run, you should be able to look at the HTML files for the book locally on your computer. They will be in _build
. The project is configured to stop the build if any errors are encountered. This is a frequent occurrence! You'll need to look at the logs to work out what might have gone wrong.
This repo is configured such that new versions automatically build and upload the book to the website. The GitHub Action that does this is in .github/workflows/release.yml
.
You shouldn't need to upload the book if you are a regular contributor. There are times when you might need to as an admin, but normally the book will be updated automatically upon release of a new version.
See here for how to upload revised HTML files, but the key command is
uv run ghp-import -n -p -f _build/html
This book uses pre-commit to strip output from notebooks, lint, format, and check for large files added by mistake.
To perform the pre-commit checks, use
uv run pre-commit run --all-files
on your staged files. Ensure pre-commit reports all tests as having passed before committing.
-
Open a new branch with the version name, eg
v1.0.4
-
Change the version in
pyproject.toml
(you can runuv run version_bumper.py
, which has script-level dependencies) -
Commit the change with a new version label (eg
v1.0.4
) as the commit message -
Go to GitHub. Assuming the tests pass, merge into main.
-
The book should automatically build in GitHub actions, and be pushed to the website. A new release will also be created automatically. A new Zenodo entry is also automatically created.
There is a Dockerfile associated with this project. Pre-reqs To use it:
- Pre-reqs: docker installed, VS Code installed, VS Code docker and Remote Explorer extensions installed.
- Build the image from the file. Right click on the file in VS Code and select "Build Image".
- On the Docker tab of VS Code, right-click on the
python4DS:latest
image and select 'Run Interactive'. - On the Docker tab again, right-click on the running
python4DS:latest
container and click "Attach Visual Studio Code". - Do any development as required (see the instructions above)
If you wish to copy any files (eg the built HTML files) back to your local machine to check them, use
docker cp CONTAINER:app/_build/html/ temp_dir/