Re: [Tutor] web development question

2015-06-21 Thread Alan Gauld
On 21/06/15 20:50, Laura Creighton wrote: > Its still just Python on the server? Very similar to Flask > but with a nice web based IDE. > But the UI (View) is still HTML/Javascript Maybe I am wrong, but I thought you could write in nothing but Python and HTML. I am going to start playing with w

Re: [Tutor] web development question

2015-06-21 Thread Laura Creighton
In a message of Sun, 21 Jun 2015 20:09:54 +0100, Alan Gauld writes: >On 21/06/15 18:32, Laura Creighton wrote: >> If you don't know javascript, and want to code your website in >> python, you might consider using web2py >> >> http://www.web2py.com/ > > >New one on me, looks interesting having viewe

Re: [Tutor] web development question

2015-06-21 Thread Alan Gauld
On 21/06/15 18:32, Laura Creighton wrote: If you don't know javascript, and want to code your website in python, you might consider using web2py http://www.web2py.com/ New one on me, looks interesting having viewed the first 4 videos. But not sure how it helps with the UI or Javascript? Its

[Tutor] web development question

2015-06-21 Thread Laura Creighton
If you don't know javascript, and want to code your website in python, you might consider using web2py http://www.web2py.com/ With web2py a whole lot of things happen automatically for you more or less 'by magic'. Whether you consider this a really great thing because you didn't want to have to

Re: [Tutor] web development

2005-09-28 Thread Mike Hansen
> Subject: > [Tutor] web development > From: > Don Jennings <[EMAIL PROTECTED]> > Date: > Tue, 27 Sep 2005 22:13:30 -0400 > To: > tutor@python.org > > To: > tutor@python.org > > > Earlier this month, Kent posted that Jython and Velocity are a g

Re: [Tutor] web development

2005-09-28 Thread Andrew P
I've used CherryPy on a couple of projects now.  I use it with HTMLTemplate (http://freespace.virgin.net/hamish.sanderson/htmltemplate.html) and SQLObject (http://sqlobject.org/). This has the advantage of being about as Pythonic as you can get, since everything you manipulate is represented as a

Re: [Tutor] web development

2005-09-28 Thread Kent Johnson
Don Jennings wrote: > what I would really like to know are how people decided to use any > particular framework. Well I stumbled into Jython / Velocity over many years. My first web application was written in Java + servlets using the Jetty servlet engine. At first I didn't use any template eng

Re: [Tutor] [tutor]web development

2005-09-28 Thread Ron Phillips
Well, I won't argue with anyone who chooses otherwise, but CherryPy http://www.cherrypy.org/ is easy to use, lightweight, quick, and pythonic. I write everything as plain old python, then webify it the very last thing.   It's also the basis of a new, promising framework called TurboGears http://

[Tutor] web development

2005-09-27 Thread Don Jennings
Earlier this month, Kent posted that Jython and Velocity are a good way to develop dynamic web sites. After a little searching, it seems that there are quite a few options for web development in Python (perhaps too many?). So, rather than ask for recommendations of which one to use, what I woul