Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #14972

Re: webapp development in pure python

Date 2011-10-25 18:33 +0200
From Laszlo Nagy <gandalf@shopzeus.com>
Subject Re: webapp development in pure python
References <4EA6BEC3.5010206@shopzeus.com> <mailman.2209.1319552029.27778.python-list@python.org> <j86gkm$77v$1@dont-email.me>
Newsgroups comp.lang.python
Message-ID <mailman.2213.1319560423.27778.python-list@python.org> (permalink)

Show all headers | View raw


>>> Anyone knows a framework for webapp development? I'm not talking about
>>> javascript/html compilers and ajax frameworks. I need something that 
>>> does
>>> not require javascript knowledge, just pure Python. (So qooxdoo is not
>>> really an option, because it cannot be programmed in Python. You 
>>> cannot even
>>> put out a window on the center of the screen without using 
>>> javascript code,
>>> and you really have to be a javascript expert to write useful 
>>> applications
>>> with qooxdoo.)
>>>
>>> What I need is a programmable GUI with windows, event handlers and
>>> extensible widgets, for creating applications that use http/https 
>>> and a web
>>> browser for rendering.
>>
>> So you're looking for something like Google Web Toolkit but using
>> Python instead of Java...
>>
>> Do you know about pyjamas (http://pyjs.org/)?  I've never used it, but
>> I think it endeavours to be what you are looking for.
As I told, I'm not talking about javascript/html compilers and ajax 
frameworks. Pyjamas is both a javascript compiler and  an ajax 
framework. My Python module would connect to a database server and query 
some data, then display it in a grid. This cannot be compiled into 
javascript because of the database server connection. With pyjamas, I 
would have to create the server side part separately, the user interface 
separately, and hand-code the communication between the widets and the 
server side. I would like to use this theoretical web based framework 
just like pygtk or wxPython: create windows, place widgets on them, 
implement event handlers etc. and access the widgets and other server 
side resources (for example, a database connection) from the same source 
code. Transparently. So the web part would really just be the rendering 
part of the user inferface. This may not be possible at all..

My other idea was to use a freenx server and wxPython. Is it a better 
solution? Have anyone used this combination from an android tablet, for 
example? Would it work?

Thanks,

    Laszlo

Back to comp.lang.python | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

Re: webapp development in pure python Arnaud Delobelle <arnodel@gmail.com> - 2011-10-25 15:13 +0100
  Re: webapp development in pure python "Martin P. Hellwig" <martin.hellwig@gmail.com> - 2011-10-25 15:19 +0100
    Re: webapp development in pure python Laszlo Nagy <gandalf@shopzeus.com> - 2011-10-25 18:33 +0200
      Re: webapp development in pure python alex23 <wuwei23@gmail.com> - 2011-10-25 20:15 -0700
      Re: webapp development in pure python Rebelo <puntabluda@gmail.com> - 2011-10-26 00:29 -0700
        Re: webapp development in pure python Roy Smith <roy@panix.com> - 2011-10-26 09:06 -0400
      Re: webapp development in pure python Rebelo <puntabluda@gmail.com> - 2011-10-26 00:29 -0700
    RE: webapp development in pure python "Sells, Fred" <fred.sells@adventistcare.org> - 2011-10-25 23:00 -0400
    RE: webapp development in pure python "Prasad, Ramit" <ramit.prasad@jpmorgan.com> - 2011-10-26 17:47 -0400
    Re: webapp development in pure python Chris Angelico <rosuav@gmail.com> - 2011-10-27 14:05 +1100
      Re: webapp development in pure python 88888 Dihedral <dihedral88888@googlemail.com> - 2011-10-26 22:04 -0700
        Re: webapp development in pure python Chris Angelico <rosuav@gmail.com> - 2011-10-27 16:18 +1100
          Re: webapp development in pure python 88888 Dihedral <dihedral88888@googlemail.com> - 2011-10-26 23:37 -0700
          Re: webapp development in pure python 88888 Dihedral <dihedral88888@googlemail.com> - 2011-10-26 23:37 -0700
      Re: webapp development in pure python 88888 Dihedral <dihedral88888@googlemail.com> - 2011-10-26 22:04 -0700

csiph-web