In [3]:
###Table of Contents
In [4]:
help('learning_lab.01_device_mounted')
In [5]:
from importlib import import_module
script = import_module('learning_lab.03_interface_names')
from inspect import getsource
print(getsource(script.main))
In [6]:
print(getsource(script.demonstrate))
In [7]:
run ../learning_lab/01_device_mounted.py
In [2]:
from basics.odl_http import http_history
from basics.http import http_history_to_html
from IPython.core.display import HTML
HTML(http_history_to_html(http_history()))
Out[2]: