A new python library to create UI (or UI toolkit), which render nativly in anything which can render html/js/css. Thoses can be a browser, a pywebview, an android/apk, or anything based on cef, depending on an htag runner ! As it's based on html/js rendering: you can easily mix powerful JS libs with powerful PY3 libs : and make powerful python apps !
But yes … the promise is here : it's a GUI toolkit for building "beautiful" applications for mobile, web, and desktop from a single codebase.
Announcement on reddit (22/07/14)
Well tested:
and more technicals :
~~better js try/catch to sort js/py error + try/catch on http com error (for thoses which kill session webhttp/pye) ~~
getStateImage is non sense coz it's str'ing (why not returning the str ?!)
mix the Tag.init with the old system (like this: it's unmaintable)
introduce a virtual tag/placeholder
DISPLAY a warning (or exception in STRICT_MODE), when a render method use a "tag creation" (ex: Tag.div("hello")), because it will always be rendered !!!!! -> bad habits
rename "tag" to "self" for js statements (keep the twos, for compatibility reasons)
Make it possibles -> NOT POSSIBLE currently ... abandonned ;-)
self.js = self.bind( self.starting , b'window.innerWidth') # doesn't work currently
self.js = self.bind.starting( b'window.innerWidth' ) # work (only reason to keep the "old form")
perhaps self( js_statement)
-> self.call( js_statement )
... less confusing !
thus, to avoid self( self.bind.method(*a,**k) )
, you can write self.call.<method>( *a,**k )
At the beginning, there was guy, which was/is the same concept as python-eel, but more advanced. One day, I've discovered remi, and asked my self, if it could be done in a guy way. The POC was very good, so I released a version of it, named gtag. It worked well despite some drawbacks, but was too difficult to maintain. So I decided to rewrite all from scratch, while staying away from guy (to separate, rendering and runners)... and htag was born. The codebase is very short, concepts are better implemented, and it's very easy to maintain.