Keys#
With the KeyTable extension you can navigate in a table using the arrow keys:
import itables
itables.init_notebook_mode()
itables.show(
itables.sample_dfs.get_countries(html=False),
keys=True,
)
Tip
You can activate this option for all your tables with
itables.options.keys = True
Warning
The KeyTable extension works in Jupyter Book (try it here in the documentation) but not in JupyterLab.