Pywbt

Latest version: v0.2.9

Safety actively analyzes 723954 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 2 of 2

0.2.3

Added

- When an exception occurs during running WBT, propagate the exception and clean up
before existing.
- If for some reason simply running WBT fails, redownload the WBT executable and try
again. This is to avoid the situation where the WBT executable is corrupted or not
downloaded properly or is not compatible with the system platform.
- Add two new helper function that can be used to get the list of available tools, their
respective descriptions and parameters: `list_tools` and `tool_parameters`. For
better viewing and querying the outputs of these two functions, it is recommended to
use the `pandas` library. For example, you can use `pd.Series(pywbt.list_tools())`
to get a `pandas.Series` of the available tools, and
`pd.DataFrame(pywbt.tool_parameters("BreachDepressions"))` to get a
`pandas.DataFrame` of the parameters for the `BreachDepressions` tool.

0.2.2

Added

- Make `files_to_save` optional in the `whitebox_tools` function. If not provided, all
generated intermediate files will be stored in `save_dir` (default is the source
directory).
- Improvements to documentation including writing, the look and feel of the
documentations, and a new section for WBT workflows that can be found
[here](https://pywbt.readthedocs.io/latest/workflows).

Changed

- Avoid copying all files from the `src_dir` to the temporary directory, instead, run
the tools in the `src_dir` itself. This change will avoid copying large files and
could improve performance. With this change, all intermediate files will be stored
in `src_dir` unless `files_to_save` is provided which will save only the specified
output files and delete the rest of the intermediate files.
- Improve performance by extracting and copying the input files using
`zipfile.ZipFile.extractall` and `shutil.copytree`.
- Improve the logic of determining the type of system platform by only calling
`platform.system()` once and caching the result.
- Improve the writing of the documentation.

0.2.0

Highlights

This is a breaking change release. The `whitebox_tools` function now takes care of
running the tools in a temporary directory and saving the output files to a specified
directory. This change makes the function more user-friendly and easier to use.

Changed

- Add two new arguments and remove one argument from the `whitebox_tools` function. The
new arguments are:

- `src_dir` (a `str` or `Path`): Path to the source directory containing the input
files. All user input files will be copied from this directory to a temporary
directory for processing. Note that when using these files in `arg_dict`, you
should use the filenames without the directory path since the internal working
directory of the WhitboxTools is set to the temporary directory where the files
are copied.
- `save_dir` (a `str` or `Path`): Path to the directory where the output files will be
saved. If not provided, the output files will be saved in the source directory.
- `files_to_save` (a `list` of `str`): List of output files to save to the `save_dir`.
Note that these should be the filenames without the directory path, just as they
are used in the `arg_dict`, i.e. the values that are passed by `-o` or `--output`
in the WhiteboxTools command.

The removed argument is:

- `work_dir`: This argument is no longer needed since the working directory is set to
the temporary directory where the input files are copied.

- All examples have been updated to reflect the changes in the `whitebox_tools`
function.

Added

- A new example notebooks has been added to compute Topographic Wetness Index (TWI)
using PyWBT for a watershed in Houston, Texas.
- In the Delineate Basins notebook added a new plot for the mainstems.
- Added a new function to the `utils` module of the example notebooks to get DEM data
from the USGS's 3D Elevation Program (3DEP).

0.1.1

- This release has no changes, it is just to trigger the release process since the
initial release on PyPi did not include the archive which is needed for
`conda-forge` to build the package.

0.1.0

- Initial release.

Page 2 of 2

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.