Various utilities that function as the backbone for the website
An example with a str
:
get_version('fastai')
And an example with the module itself:
import fastai
get_version(fastai)
Example usage:
As strings:
state_versions('fastai', 'fastcore')
As direct modules:
import fastai, fastcore
state_versions(fastai, fastcore)
state_versions([fastai, fastcore])