Search Results

3
votes

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

With some Metaclass magic to keep the ordering I have the following working. I'm not sure how pythonic it is but it is good fun for creating simple things. class w(Wndw): title=' …
5
votes

Python regular expression for HTML parsing (BeautifulSoup)

I agree with Vinko BeautifulSoup is the way to go. However I suggest using fooId['value'] to …