Sophie

Sophie

distrib > Mageia > 7 > armv7hl > media > core-release > by-pkgid > ecc026b61096e2959ba01e3826059e7c > files > 60

ipython-doc-7.2.0-3.mga7.noarch.rpm

# A simple IPython script that provides Notebook links to .py files in the cwd

from IPython.display import FileLink, display
files =!ls *.py
for f in files:
    display(FileLink(f))