Click and Drag Functionality in Web Apps with Python

Steve Holden steve at holdenweb.com
Thu Oct 12 09:54:26 EDT 2006


Wijaya Edward wrote:
> Hi,
>  
> Some recent webapps like Kiko <http://www.kiko.com/> , Google's gadget <http://www.google.com/ig/directory?hl=en> , and spreadsheets <http://spreadsheets.google.com>  to name a few, 
> have this functionality. 
> 
> I wonder how can this funcitonalities be implemented in Python. 
> Do you guys have any experience with it?
> Any Python module that support that?
>  
> Regards,
> Edward WIJAYA
> SINGAPOE
> 

In order for your request to make sense Python would have to be 
available as a browser programming language. This has been done (by Mark 
Hammond as part of the win32all extensions), but for security reasons it 
is no longer installed by default, and it's not sufficiently widespread 
to make such solutions really worthwhile.

If you are talking about web servers *delivering* such interactive code, 
then there is no inherent difference between Python and other web 
servers - they just deliver the interactive code to the browser. Bob 
Ippolito's MochiKit is quite Pythonic in nature.

regards
  Steve
-- 
Steve Holden       +44 150 684 7255  +1 800 494 3119
Holden Web LLC/Ltd          http://www.holdenweb.com
Skype: holdenweb       http://holdenweb.blogspot.com
Recent Ramblings     http://del.icio.us/steve.holden




More information about the Python-list mailing list