Out of the OpenGL centric framework you have also webview:

<https://github.com/neroist/webview>
    
    
    import webview
    
    let w = newWebview() # or you can use create()
    
    w.title = "Basic Example" # or use setTitle()
    w.size = (480, 320) # or setSize()
    w.html = "Thanks for using webview!" # or setHtml()
    
    w.run()
    w.destroy()
    
    
    Run

and then it's like building a webpage

Reply via email to