#!/usr/bin/env python # coding: utf-8 # # K3D Examples # Try one of the examples below! # In[1]: # just generating the list here, nothing to see... from IPython.display import Markdown from glob import glob Markdown("\n".join([ "- {0}".format(x[9:-6].replace("_", " "), x) for x in sorted(glob("examples/*.ipynb")) ])) # In[2]: Markdown("### Examples presented during Sage Days 74\n"+"\n".join([ "- {0}".format(x[9:-6].replace("_", " "), x) for x in sorted(glob("examples/SageDays74/*.ipynb")) ])) # In[ ]: