Re: Python Web App

2010-12-26 Thread Sean
@Katie Thank you I considered this option until I realized it wouldn't let me do anything other than ping from the command line. The rest of you all make valid points after doing a little more research on my own I found some really nice web based text editors but they didn't have any testing abili

Re: Python Web App

2010-12-25 Thread Katie T
On Wed, Dec 22, 2010 at 9:43 PM, Sean wrote: > Anybody know where I can find a Python Development Environment in the > form of a web app for use with Chrome OS. I have been looking for a > few days and all i have been able to find is some old discussions with > python developers talking about they

Re: Python Web App

2010-12-23 Thread Tim Harig
On 2010-12-23, Daniel Fetchinson wrote: >> I don't personally think the web makes a good framework for highly >> interactive applications as they must work within the constraints of the >> browser and IDEs are highly interactive applications by their very nature. >> Perhaps HTML5/CSS3 will change

Re: Python Web App

2010-12-23 Thread Octavian Rasnita
From: "Daniel Fetchinson" > Anybody know where I can find a Python Development Environment in the > form of a web app for use with Chrome OS. I have been looking for a > few days and all i have been able to find is some old discussions with > python developers talking about they w

Re: Python Web App

2010-12-23 Thread Daniel Fetchinson
Anybody know where I can find a Python Development Environment in the form of a web app for use with Chrome OS. I have been looking for a few days and all i have been able to find is some old discussions with python developers talking about they will want one for the OS to be a

Re: Re: Python Web App

2010-12-22 Thread hidura
Which is exactly the problem with web apps that are highly interactive. My suggestion, is not to develope a web based IDE or use one. It just isn't something that the web was designed to do well. Is not a problem of the IDE, the problem is on what the developer expect as i said i you want someth

Re: Python Web App

2010-12-22 Thread Tim Harig
On 2010-12-23, Hidura wrote: > Ok, but you are comparing a web-based framework with a native-based > framework that use the components of the system to make all the things > that need, a web-based framewok use the resourses of the browser to Right. That is exactly what I am comparing. > make it

Re: Python Web App

2010-12-22 Thread Hidura
Ok, but you are comparing a web-based framework with a native-based framework that use the components of the system to make all the things that need, a web-based framewok use the resourses of the browser to make it all, so the developer that use a framework on the web can't expect get the same resu

Re: Python Web App

2010-12-22 Thread Tim Harig
[Reordered to preserve context in bottom posting] On 2010-12-23, Hidura wrote: > 2010/12/22, Tim Harig : >> On 2010-12-22, Sean wrote: >>> Anybody know where I can find a Python Development Environment in the >>> form of a web app for use with Chrome OS. I have been looking for a >>> few days and

Re: Python Web App

2010-12-22 Thread Hidura
My framework let you store online on a hosting server that the same framework provide. 2010/12/22, Hidura : > Use editarea, that's the best option if you want something small, but > as i said before i am developing a framework that allows you to create > app's from the web and is much more complet

Re: Python Web App

2010-12-22 Thread Hidura
Use editarea, that's the best option if you want something small, but as i said before i am developing a framework that allows you to create app's from the web and is much more complete than editarea. 2010/12/22, Sean : > I am wanting to learn python and I am test a Chrome OS notebook at the > sam

Re: Python Web App

2010-12-22 Thread Sean
Forgot to point out that Chrome OS has no local storage accessable to the user. Hence why I need a web based solution. On Dec 22, 8:51 pm, Sean wrote: > I am wanting to learn python and I am test a Chrome OS notebook at the > same time so I need something that will atleast tell me if I have any >

Re: Python Web App

2010-12-22 Thread Sean
I am wanting to learn python and I am test a Chrome OS notebook at the same time so I need something that will atleast tell me if I have any syntax errors. Although the more features the better that way learning is an easier experience. On Dec 22, 7:05 pm, Hidura wrote: > I am creating one, is on

Re: Python Web App

2010-12-22 Thread Hidura
Why grashtly? 2010/12/22, Tim Harig : > On 2010-12-22, Sean wrote: >> Anybody know where I can find a Python Development Environment in the >> form of a web app for use with Chrome OS. I have been looking for a >> few days and all i have been able to find is some old discussions with >> python de

Re: Python Web App

2010-12-22 Thread Tim Harig
On 2010-12-22, Sean wrote: > Anybody know where I can find a Python Development Environment in the > form of a web app for use with Chrome OS. I have been looking for a > few days and all i have been able to find is some old discussions with > python developers talking about they will want one for

Re: Python Web App

2010-12-22 Thread Hidura
I am creating one, is on test, what kind of app do you want create? 2010/12/22, Sean : > Anybody know where I can find a Python Development Environment in the > form of a web app for use with Chrome OS. I have been looking for a > few days and all i have been able to find is some old discussions w

Re: Python web app. (advice sought)

2007-01-16 Thread Tim Williams
On 16/01/07, Ralf Schönian <[EMAIL PROTECTED]> wrote: > > I would also like to vote for Karrigell. > > BTW: Does anyone knows how to avoid stopping/starting of the webserver > after changing external libraries? I have some own modules under > /opt/local/python/lib and import them by extending the

Re: Python web app. (advice sought)

2007-01-15 Thread Duncan Smith
Thanks all. It's looking like Turbogears at the moment (unless my boss makes an executive decision). Cheers. Duncan -- http://mail.python.org/mailman/listinfo/python-list

Re: Python web app. (advice sought)

2007-01-15 Thread Ralf Schönian
Tim Williams schrieb: > On 15 Jan 2007 00:52:33 -0800, Torabisu <[EMAIL PROTECTED]> wrote: > > Don't overlook Karrigell either, with a tiny learning curve its > always worth consideration, especially if you need rapid development > and a web server that will sit on top of your exising .py module

Re: Python web app. (advice sought)

2007-01-15 Thread Istvan Albert
Duncan Smith wrote: > I've had a look at Django, Turbogears and Plone, and at the moment I am > torn between Turbogears and Plone. I Plone is not suited for the type of application you are building (as others have pointed out in this thread). Take a second look at TurboGears (or CherryPy for t

Re: Python web app. (advice sought)

2007-01-15 Thread bruno . desthuilliers
Duncan Smith a écrit : > Hello, > I find myself in the, for me, unusual (and at the moment unique) > position of having to write a web application. I have quite a lot of > existing Python code that will form part of the business logic. This > relies on 3rd party libraries (such as numpy) wh

Re: Python web app. (advice sought)

2007-01-15 Thread Michele Simionato
Duncan Smith wrote: > Hello, > I find myself in the, for me, unusual (and at the moment unique) > position of having to write a web application. I have quite a lot of > existing Python code that will form part of the business logic. This > relies on 3rd party libraries (such as numpy) which

Re: Python web app. (advice sought)

2007-01-15 Thread Torabisu
Tim Williams wrote: > On 15 Jan 2007 00:52:33 -0800, Torabisu <[EMAIL PROTECTED]> wrote: > > > > Duncan Smith wrote: > > > Hello, > > > I find myself in the, for me, unusual (and at the moment unique) > > > position of having to write a web application. I have quite a lot of > > > existing P

Re: Python web app. (advice sought)

2007-01-15 Thread Tim Williams
On 15 Jan 2007 00:52:33 -0800, Torabisu <[EMAIL PROTECTED]> wrote: > > Duncan Smith wrote: > > Hello, > > I find myself in the, for me, unusual (and at the moment unique) > > position of having to write a web application. I have quite a lot of > > existing Python code that will form part of t

Re: Python web app. (advice sought)

2007-01-15 Thread Torabisu
Duncan Smith wrote: > Hello, > I find myself in the, for me, unusual (and at the moment unique) > position of having to write a web application. I have quite a lot of > existing Python code that will form part of the business logic. This > relies on 3rd party libraries (such as numpy) which