Re: webapp development in pure python

2011-10-26 Thread 88888 Dihedral
OK, lets start a framework in using python in the server side and the client side. (1). requirements of the server side first: 1. sending HTML, XML documents to be displayed in the browsers of the clients and receiving for user inputs are easy in modpython, django, and etc. 2. Da

Re: webapp development in pure python

2011-10-26 Thread Chris Angelico
On Thu, Oct 27, 2011 at 4:04 PM, 8 Dihedral wrote: > I am thinking one has to distinguish between programs for database servers of >   the commercial applications in banks or insurance companies that cant be > hacked in low costs, and experiments to chunk out database servers for games > an

Re: webapp development in pure python

2011-10-26 Thread 88888 Dihedral
I am thinking one has to distinguish between programs for database servers of the commercial applications in banks or insurance companies that cant be hacked in low costs, and experiments to chunk out database servers for games and videos all over the world! -- http://mail.python.org/mailman

Re: webapp development in pure python

2011-10-26 Thread Chris Angelico
On Thu, Oct 27, 2011 at 8:47 AM, Prasad, Ramit wrote: > You technically can connect to databases from JavaScript. It is a terrible > idea, but achievable. Not really sure how it would get "compiled" into > JavaScript, so it is possible that is the stumbling block. > http://stackoverflow.com/ques

RE: webapp development in pure python

2011-10-26 Thread Prasad, Ramit
I am not really an expert web developer, so this is just my two cents. > 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. You technically can connect to datab

Re: webapp development in pure python

2011-10-26 Thread Roy Smith
In article <18902163.1637.1319614150053.JavaMail.geo-discussion-forums@yqp37>, Rebelo wrote: > Try Pylons. Use html templates which get populated with data from your > database and then just render them. If you just want to display data, with > simple forms for editing and adding Pylons frame

Re: webapp development in pure python

2011-10-26 Thread Rebelo
Try Pylons. Use html templates which get populated with data from your database and then just render them. If you just want to display data, with simple forms for editing and adding Pylons framework is more then enough. http://pylonsbook.com/en/1.1/ http://www.pylonsproject.org/ -- http://mail.

Re: webapp development in pure python

2011-10-25 Thread alex23
Laszlo Nagy wrote: > 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. So what you want is for everything to happen server-side, with html output sent to the cl

RE: webapp development in pure python

2011-10-25 Thread Sells, Fred
Quixote may be what you want, but it's been years since I've used it and I don't know if it is still alive and kicking. It was from MEMS if I remember correctly. Using django and Flex is one way to avoid html and javascript and it works great for datagrids. Fred. -- http://mail.python.org/mail

Re: webapp development in pure python

2011-10-25 Thread Laszlo Nagy
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

Re: webapp development in pure python

2011-10-25 Thread Martin P. Hellwig
On 10/25/11 15:13, Arnaud Delobelle wrote: On 25 October 2011 14:50, Laszlo Nagy wrote: Hi, 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. (S

Re: webapp development in pure python

2011-10-25 Thread Arnaud Delobelle
On 25 October 2011 14:50, Laszlo Nagy wrote: > >  Hi, > > 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,

Re: webapp development in pure python

2011-10-25 Thread Anurag Chourasia
Have you considered Django ? http://www.djangoproject.com/ Regards, Anurag On Tue, Oct 25, 2011 at 7:20 PM, Laszlo Nagy wrote: > > Hi, > > Anyone knows a framework for webapp development? I'm not talking about > javascript/html compilers and ajax frameworks. I

webapp development in pure python

2011-10-25 Thread Laszlo Nagy
Hi, 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 canno