파이썬 간단한 웹뷰 구현
마스터욱
0
77
0
0
2023-08-28 05:16:21
def say_hello(self):
#print("오케이!")
main_window.evaluate_js('alert("Hello from Python!");') # 웹뷰 내에서 alert 창 띄우기
if __name__ == '__main__':
# pywebview 윈도우 생성 및 시작
#="pywebview.api.say_hello();"
main_window = webview.create_window('title', 'https://xxx', width=1200, height=700, js_api=PythonAPI())
webview.start()