mirror of
https://github.com/jupyter/notebook.git
synced 2024-12-27 04:20:22 +08:00
6 lines
182 B
Plaintext
6 lines
182 B
Plaintext
# 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)) |