This is the Title of the Notebook

And this is the description


In [1]:
from metatab.jupyter.script import get_ipython
import pandas as pd
from os.path import exists
from os import remove

In [2]:
%%bash
echo "This is a Bash cell"
touch /tmp/footouched


This is a Bash cell

In [ ]:
assert exists('/tmp/footouched')
remove('/tmp/footouched')
assert not exists('/tmp/footouched')

In [2]:
!ls


MagicsTest.ipynb

In [2]:
%%metatab -p . 
Origin: example.com
Dataset: foobar.com 
Identifier: de097279-28ef-42f5-a4f5-0eaac53b7dc4
Name: example.com-foobar.com

In [ ]:
assert mt_pkg.find_first_value('Root.Name') == 'example.com-foobar.com'

In [1]:
foo = 10
bar = 20
print(bar)


Out[1]:
20

In [ ]:
print("DIsplaying Locals")
print(locals())