How to get a Python Tkinter Applet to Web Page

前端 未结 1 1865
忘了有多久
忘了有多久 2020-12-06 18:24

I wrote an applet in Python using the Tkinter library. I finished writing the applet but now I want to make it public on my website. Does anyone know a way to get the python

相关标签:
1条回答
  • 2020-12-06 18:44

    What you ask is not possible. Several years ago there was a Tcl/Tk browser plugin, but the last time anyone touched that sourceforge project was back in 2006. I seriously doubt it could be made to work with tkinter. For that matter, I doubt it works for tcl/tk either. Browsers have advanced quite a bit since then.

    And no, getting it to work in jython so you can run it via a java plugin won't help. Tkinter works by working directly with a tcl/tk interpreter. The tcl/tk interpreter won't run in the JVM.

    0 讨论(0)
提交回复
热议问题