Finding the available books¶
The bookshelf
library hosts a multitude of volumes, each with various versions or books. Below is a guide to discovering all available books.
Finding all available books of a specific volume¶
Should your interest lie in a particular volume, and you wish to explore all its available books in remote bookshelf, the list_versions
function provided by BookShelf
offers a straightforward solution.
In [1]:
Copied!
from bookshelf import BookShelf
shelf = BookShelf()
volume = "rcmip-emissions"
shelf.list_versions(volume)
from bookshelf import BookShelf shelf = BookShelf() volume = "rcmip-emissions" shelf.list_versions(volume)
/home/runner/work/bookshelf/bookshelf/.venv/lib/python3.10/site-packages/scmdata/database/_database.py:9: TqdmWarning: IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html import tqdm.autonotebook as tqdman
Out[1]:
['v5.1.0', 'v5.1.0']