##// END OF EJS Templates
Merge pull request #13143 from meeseeksmachine/auto-backport-of-pr-13133-on-7.x...
Merge pull request #13143 from meeseeksmachine/auto-backport-of-pr-13133-on-7.x Backport PR #13133 on branch 7.x (enable autoplay in embed youtube player)

File last commit:

r20547:8f4e2b41
r26785:ecce8d31 merge
Show More
list_subdirs.ipy
6 lines | 194 B | text/plain | TextLexer
# A simple IPython script that lists files in all subdirs
from IPython.display import FileLinks, display
dirs =!ls -d */
for d in dirs:
if d != '__pycache__/':
display(FileLinks(d))