list_atlases
def get_downloaded_atlases(with_version=False):
docstring:
Get a list of all the downloaded atlases and their version.
Returns
-------
list
A list of tuples with the locally available atlases and their version
def get_local_atlas_version(atlas_name):
docstring:
Get version of a downloaded available atlas.
Arguments
---------
atlas_name : str
Name of the atlas.
Returns
-------
str
Version of atlas.
def get_atlases_lastversions():
docstring:
Returns
-------
dict
A dictionary with metadata about already installed atlases.
def show_atlases(show_local_path=False):
docstring:
Prints a formatted table with the name and version of local
(downloaded)
and online (available) atlases. To do so, dowload info on
the latest atlas version and compares it with what it's stored
locally.
Arguments
---------
show_local_path : bool
If true, local path of the atlases are in the table with the rest
(optional, default=False).
Last modified 2yr ago