From 2c6a943d0901deb2980a28a93862cde469986e9c Mon Sep 17 00:00:00 2001 From: s214735 <s214735@dtu.dk> Date: Mon, 3 Feb 2025 10:23:14 +0100 Subject: [PATCH] final testing and docstring --- qim3d/io/_downloader.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/qim3d/io/_downloader.py b/qim3d/io/_downloader.py index 723b969d..8946e919 100644 --- a/qim3d/io/_downloader.py +++ b/qim3d/io/_downloader.py @@ -17,6 +17,9 @@ class Downloader: Attributes: folder_name (str or os.PathLike): Folder class with the name of the folder in <https://data.qim.dk/> + + Methods: + file_directory(): Prints the downloadable files from the QIM data repository. Syntax for downloading and loading a file is `qim3d.io.Downloader().{folder_name}.{file_name}(load_file=True)` @@ -50,6 +53,7 @@ class Downloader: import qim3d downloader = qim3d.io.Downloader() + downloader.file_directory() data = downloader.Cowry_Shell.Cowry_DOWNSAMPLED(load_file=True) qim3d.viz.slicer_orthogonal(data, color_map="magma") -- GitLab