Get versions of imported modules in current session: pyversions.versions()
Designed particularly to work within a Jupyter notebook.
Call this function in a cell just after all modules/functions are imported.
This function uses Python inspect module to get the caller's global namespace; it should work, if not, pass globals() as a parameter.
pip install pyversions
Or
conda install -c duartexyz pyversions
>>> import pyversions
>>> vs = pyversions.versions()
>>> from pyversions import versions
>>> versions(); # semicolon to avoid printing information twice
"""
Get versions of imported modules in current session: pyversions.versions()
Parameters
----------
glbs : globals(), optional (default=None)
Get all the imported modules from the passed globals() namespace.
show : bool, optional (default=True)
Whether to print information about environment and imported modules.
Returns
-------
info : list of strings
list of strings with information about the current environment and
imported modules.
Notes
-----
Designed particularly to work within a Jupyter notebook.
Call this function in a cell just after all modules/functions are imported.
This function uses Python inspect module to get the caller's global
namespace; it should work, if not, pass globals() as a parameter.
Based on https://stackoverflow.com/questions/40428931
Examples
--------
>>> import pyversions
>>> vs = pyversions.versions()
>>> from pyversions import versions
>>> versions(); # semicolon to avoid printing information twice
[In a Jupyter notebook](https://github.com/demotu/pyversions/blob/master/docs/pyversions.ipynb)
Version history
---------------
'0.0.1' :
The first version
"""
Here is a suggestion to cite this GitHub repository:
Marcos Duarte. (2021). pyversions: A Python module to get versions of imported modules in current session (Version v0.0.3). Zenodo. http://doi.org/10.5281/zenodo.4599146
And a possible BibTeX entry:
@software{marcos_duarte_2021_4599146,
author = {Marcos Duarte},
title = {{pyversions: A Python module to get versions of
imported modules in current session}},
month = mar,
year = 2021,
publisher = {Zenodo},
version = {v0.0.3},
doi = {10.5281/zenodo.4599146},
url = {https://doi.org/10.5281/zenodo.4599146}
}
The non-software content of this project is licensed under a Creative Commons Attribution 4.0 International License, and the software code is licensed under the MIT license.