# https://laboratory.kazuuu.net/build-a-gui-with-an-embedded-home-page-and-implement-a-program-using-pywebview-in-python/

import webview

window = webview.create_window(
    title='Yahoo! JAPAN',
    url='https://www.yahoo.co.jp/',
    width=850,
    height=600,
    resizable=False,
    text_select=False,
    confirm_close=True
)
webview.start()