How would you design a very “Pythonic” UI framework?

后端 未结 15 1987
日久生厌
日久生厌 2021-02-02 01:29

I have been playing with the Ruby library \"shoes\". Basically you can write a GUI application in the following way:

Shoes.app do
  t = para \"Not clicked!\"
  b         


        
15条回答
  •  时光取名叫无心
    2021-02-02 01:40

    I have this same problem. I wan to to create a wrapper around any GUI toolkit for Python that is easy to use, and inspired by Shoes, but needs to be a OOP approach (against ruby blocks).

    More information in: http://wiki.alcidesfonseca.com/blog/python-universal-gui-revisited

    Anyone's welcome to join the project.

提交回复
热议问题