0

I have to show results/webpage in the jupyter noteboook. I want to open a URL in Python Jupyter Notebook/Cell?. Not in the Browser... Also the code should be inside a function.

1 Answer 1

3

You can display a webpage inside Jupyter notebooks using IFrame

from IPython.display import IFrame

url = 'https://www.wikipedia.org'
IFrame(url, width=800, height=400)
Sign up to request clarification or add additional context in comments.

1 Comment

Is there a way to open it on a remote machine?If so, could you kindly answer here: stackoverflow.com/q/72507242/10693596

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.