notutils documentation

Jupyter Notebook Utilities for Python

notutils is a collection of convenience functions designed to enhance the Jupyter Notebook experience for Python users. It provides convenient tools for displaying URLs, embedding iframes, visualizing Google Books, toggling code visibility, creating interactive prediction widgets, and more.

Quick Start

from notutils import display_url, iframe_url, display_iframe_url

display_url("https://github.com/lawrennd/notutils")
iframe_html = iframe_url("https://www.example.com", width=800, height=400)
display_iframe_url("https://www.example.com", width=800, height=400)

Installation

pip install notutils

# or with Poetry
poetry add notutils