Maybe not as slick as the Ruby version, but how about something like this:

    from Boots import App, Para, Button, alert
    
    def Shoeless(App):
        t = Para(text = 'Not Clicked')
        b = Button(label = 'The label')

        def on_b_clicked(self):
            alert('You clicked the button!')
            self.t.text = 'Clicked!'

[Like Justin said][1], to implement this you would need to use a custom metaclass on class `App`, and a bunch of properties on `Para` and `Button`. This actually wouldn't be too hard.

The problem you run into next is: how do you keep track of the *order* that things appear in the class definition? In Python 2.x, there is no way to know if `t` should be above `b` or the other way around, since you receive the contents of the class definition as a python `dict`.

However, in Python 3.0 [metaclasses are being changed][2] in a couple of (minor) ways. One of them is the `__prepare__` method, which allows you to supply your own custom dictionary-like object to be used instead -- this means you'll be able to track the order in which items are defined, and position them accordingly in the window.


  [1]: http://beta.stackoverflow.com/questions/58711/how-would-you-design-a-very-pythonic-ui-framework#58917
  [2]: http://www.python.org/dev/peps/pep-3115/