Skip to content

Instantly share code, notes, and snippets.

@korakot
Last active March 16, 2022 08:35
Show Gist options
  • Save korakot/786afa149df91b08a20ff3034b5111ab to your computer and use it in GitHub Desktop.
Save korakot/786afa149df91b08a20ff3034b5111ab to your computer and use it in GitHub Desktop.
Serve Colab webapp at a port as iframe and window (serve_port)
from google.colab.output import serve_kernel_port_as_iframe, serve_kernel_port_as_window
# start a simple server
get_ipython().system_raw("python3 -m http.server 8888 &")
serve_kernel_port_as_iframe(8888)
# path='/',
# width='100%',
# height='400',
# cache_in_notebook=False
serve_kernel_port_as_window(8888) # path='/', anchor_text=None
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment