TeachBooks wrapper around JupyterBooks
Project description
TeachBooks Package: Jupyter-Book Wrapper for Pre- and Postprocessing
The package is a CLI tool that primarily provides a wrapper around the Jupyter Book package. In this case "wrapper" refers to the CLI usage: CLI commands generally invoke jupyter-book
commands internally; the jupyter-book
package is not distributed within the teachbooks
package.
The source code and function of the package is documented on a Sphinx-built website: teachbooks.io/TeachBooks/.
Visit the TeachBooks website and manual to learn more about how this package is used in an educational context.
Primary Features and Installation
Key features (described below) include:
jupyter-book
wrapper, pre- and post-processing steps- draft/release workflow
- manage a local Python http server
Installation
The package is currently only available on PyPI and can be installed as follows:
pip install teachbooks
Jupyter Book wrapper and processing steps
Using the teachbooks CLI in the book building process generally invokes Jupyter Book. Many of the features in this package are then invoked in the stages before and after this command. The process generally includes the following steps:
- Edit source code and prepare to build a book
- Execute
teachbooks [OPTIONS] COMMAND [ARGS]
- Pre-processing step: carried out by
teachbooks
- Build step: book is built using
jupyter book [OPTIONS] COMMAND [ARGS]
- Post-processing step: carried out by
teachbooks
Draft/Release Workflow
Often it is necessary to prepare, review and edit materials in parallel to material that is currently being used by students, or another target audience. This workflow enables an author to easily maintain separate versions of a book without having to repeatedly comment out lines of a table of contents or page when building different versions. It is also easy to implement in CI/CD settings.
The workflow is enabled by a teachbooks
CLI feature that identifies and removes any lines from the files _config.yml
and _toc.yml
file that are surrounded by REMOVE-FROM-RELEASE
tags.
For example, pages in a developed book (e.g., dev
branch) can be manually stripped out of the table of contents when a merge request from dev
to release
is made. This prevents the page being included in the released book. Pages marked with this feature are still visible in the dev
book. Lines tagged in the configuration file _config.yml
can be used in exactly the same manner. The tag is applied as follows:
format: jb-book
root: intro
parts:
- caption: ...
chapters:
- file: ...
...
# START REMOVE-FROM-PUBLISH
- file: files_to_remove
# END REMOVE-FROM-PUBLISH
There is no limit to the number of stripped sections, they can be sequential and indentation does not matter.
To invoke the tag and remove content during the book build process, use the following optional argument when building the book with the teachbooks
package:
teachbooks build --publish book
Note that teachbooks build book
would build a book without stripping the tagged lines, just as jupyter-book build book
would.
Additional options like used in jupyterbook (--all
for example) can be added to the command similary as with the jupyter-book
command.
Local Python server
Easily start and stop a local Python server to better test your book while writing (e.g., the interactive Python features require a local server to properly check certain TeachBooks features). Some features like interactive python code and Grasple only work when a webserver serves the HTML content for a book. Rather than building the book in your repository and updating the website on the internet, you can use a local webserver to view the book:
- Make sure you have the TeachBooks Python package installed (e.g.,
pip install teachbooks
) - Start a server from the command line with:
teachbooks serve
- The command line output will return the URL where you can access your book
- You should reload the page if you are editing and rebuilding the book. You can try
CTRL+R
ctrl
+F5
. If this does not work, on Chrome try right-clicking somewhere on the page, select "Inspect", open the "Network" tab, then reload withCTRL+R
. - All interactive features like the Grasple/H5p iframe exercises, Sphinx-thebe python interactivity and HTML/Javascript elements should now work as well.
- When you no longer need the server, simply run
teachbooks serve stop
Acknowledgements
This package received financial support from the Civil Engineering and Geosciences faculty at Delft University of Technology in the Netherlands via Education Innovation Projects, MUDE and direct financial support of Jupyter Book applications in education. The project also received funding from the TU Delft Library at the end of 2024.
The first version of this package was created and released by Caspar Jungbacker in Spring, 2024 and has since been primarily maintained by the TeachBooks and MUDE Student Army.
Contribute
This tool's repository is stored on GitHub. The README.md
of the branch docs-book
is also part of the TeachBooks manual as a submodule. If you'd like to contribute, you can create a fork and open a pull request on the GitHub repository. To update the README.md
shown in the TeachBooks manual, create a fork and open a merge request for the GitHub repository of the manual. If you intent to clone the manual including its submodules, clone using: git clone --recurse-submodulesgit@github.com:TeachBooks/manual.git
.
Documentation Website
The documentation page for this package is built using Sphinx and @pradyunsg's Furo; use the Furo documentation as a reference when updating the documentation site.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file teachbooks-0.0.9.tar.gz
.
File metadata
- Download URL: teachbooks-0.0.9.tar.gz
- Upload date:
- Size: 16.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 85dd8b3559ff833697d94edb0408315af1a1c5022e64aadb8a588d0ca7b979ea |
|
MD5 | 1a308b9c2b07d746d794bb3842ff4ab9 |
|
BLAKE2b-256 | 87d382baecee8640d19b074b202a274eb6cabd8485aecb8d1bf9a52c2ea80008 |
File details
Details for the file teachbooks-0.0.9-py3-none-any.whl
.
File metadata
- Download URL: teachbooks-0.0.9-py3-none-any.whl
- Upload date:
- Size: 17.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a14bd849ea548eb45deef8399968ec26d2505344b90c14e2a8bdca1581947597 |
|
MD5 | 25a523ef62f3013fa3c21bfa8cfa8ca5 |
|
BLAKE2b-256 | 93afae7fce224e7dea757e732270b15d8322dd3d4a08f723db66c5768fa7d1c9 |