Skip to content

Latest commit

 

History

History
116 lines (70 loc) · 2.06 KB

list_atlases.md

File metadata and controls

116 lines (70 loc) · 2.06 KB

list_atlases

Contents

get_downloaded_atlases [#13]

Check the source code online

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

get_local_atlas_version [#32]

Check the source code online

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.

get_atlases_lastversions [#54]

Check the source code online

def get_atlases_lastversions():

 
docstring:

Returns

-------

dict

A dictionary with metadata about already installed atlases.

show_atlases [#83]

Check the source code online

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).