web interface

2005-11-07 Thread Ajar
Hi, I have a stand alone application which does some scientific computations. I want to provide a web interface for this app. The app is computationally intensive and may take long time for running. Can someone suggest me a starting point for me? (like pointers to the issues involved in this, or

Re: web interface

2005-11-07 Thread Jorge Godoy
"Ajar" <[EMAIL PROTECTED]> writes: > I have a stand alone application which does some scientific > computations. I want to provide a web interface for this app. The app > is computationally intensive and may take long time for running. Can > someone suggest me a

Re: web interface

2005-11-07 Thread Charl P. Botha
I'm using SkunkWeb [1] for building a responsive interface to a number of long-running processes. See [2] for an example of running long-running processes in SkunkWeb and monitoring them. One of the advantages (to my mind) that SkunkWeb offers over many of the other Python application servers and

Re: web interface

2005-11-08 Thread John J. Lee
Jorge Godoy <[EMAIL PROTECTED]> writes: > "Ajar" <[EMAIL PROTECTED]> writes: > > > I have a stand alone application which does some scientific > > computations. I want to provide a web interface for this app. The app > > is computationally int

Re: web interface

2005-11-09 Thread Tom Anderson
On Mon, 7 Nov 2005, Ajar wrote: > I have a stand alone application which does some scientific > computations. I want to provide a web interface for this app. The app is > computationally intensive and may take long time for running. Can > someone suggest me a starting point f

Re: web interface

2005-11-09 Thread Jean-Paul Calderone
On Wed, 9 Nov 2005 19:08:28 +, Tom Anderson <[EMAIL PROTECTED]> wrote: >On Mon, 7 Nov 2005, Ajar wrote: > >> I have a stand alone application which does some scientific >> computations. I want to provide a web interface for this app. The app is >> computational

Re: web interface

2005-11-10 Thread Michele Simionato
I have been looking for an example like this for a while, so thanks to J.P. Calderone. Unfortunately, this kind of solution is pretty much browser-dependent. For instance, I tried it and it worked with Firefox, but not with MSIE 5.01 and it will not work with any browser if you disable Javascript

Re: web interface

2005-11-10 Thread Jean-Paul Calderone
On 10 Nov 2005 05:31:29 -0800, Michele Simionato <[EMAIL PROTECTED]> wrote: > > >I have been looking for an example like this for a while, so thanks to >J.P. Calderone. >Unfortunately, this kind of solution is pretty much browser-dependent. >For instance, >I tried it and it worked with Firefox, but

Web interface GUI??

2005-02-12 Thread Luc
(MDK10.1, FC3). This was because of the wxPython version...and it seemed to be very difficult to come back to an older wxPython version with these new distributions, because of dependencies problems. So I am looking for another solution with a web interface that should work with linux and windows XP. I

Web Interface Recommendations

2008-01-29 Thread PurpleServerMonkey
Looking for suggestions on the best framework to use for an applications web interface. The user interface doesn't need immediate feedback and will be cross platform so a web interface is a good solution especially since it operates as a client\server system and not standalone. However th

building a web interface

2010-11-20 Thread Shel
create a browser-based interactive fiction/game thing. My code is currently just using dummy data rather than pulling in data from the db, but I think/hope it won't be too big of a deal to interact with the db through Python (famous last words...). My main problem right now is how to do th

Re: Web interface GUI??

2005-02-12 Thread Irmen de Jong
Luc wrote: So I am looking for another solution with a web interface that should work with linux and windows XP. I had a look to zope but was afraid with the complexity and debug difficulties. Are there some other solutions? Yes. A lot: http://www.python.org/moin/WebProgramming I know someone who

Re: Web interface GUI??

2005-02-12 Thread Luc
Irmen de Jong a écrit: > Luc wrote: > >> So I am looking for another solution with a web interface that should >> work with linux and windows XP. >> I had a look to zope but was afraid with the complexity and debug >> difficulties. >> Are there some ot

Re: Web Interface Recommendations

2008-01-29 Thread Graham Dumpleton
On Jan 30, 12:00 pm, PurpleServerMonkey <[EMAIL PROTECTED]> wrote: > Looking for suggestions on the best framework to use for an > applications web interface. > > The user interface doesn't need immediate feedback and will be cross > platform so a web interface is a good

Re: Web Interface Recommendations

2008-01-29 Thread PurpleServerMonkey
On Jan 30, 12:55 pm, Graham Dumpleton <[EMAIL PROTECTED]> wrote: > On Jan 30, 12:00 pm, PurpleServerMonkey <[EMAIL PROTECTED]> > wrote: > > > > > Looking for suggestions on the best framework to use for an > > applications web interface. > > > The us

Re: Web Interface Recommendations

2008-01-30 Thread Bruno Desthuilliers
PurpleServerMonkey a écrit : (snip) > Out of the major frameworks is there one that stands out as being > particularly well suited for what I'm trying to do? > > Django and CherryPy are on the short list so I'll give them a detailed > look although Pylons does sound rather interesting as well. I

Re: Web Interface Recommendations

2008-01-30 Thread PurpleServerMonkey
On Jan 30, 8:08 pm, Bruno Desthuilliers wrote: > PurpleServerMonkey a écrit : > (snip) > > > Out of the major frameworks is there one that stands out as being > > particularly well suited for what I'm trying to do? > > > Django and CherryPy are on the short list so I'll give them a detailed > > lo

Re: building a web interface

2010-11-20 Thread Martin Gregorie
criptions like "Further into the forest. Its getting darker" which may be OK coming from a road but is pretty stupid if you're on your way out of the forest toward the road. http://www.kitebird.com/articles/pydbapi.html which tells you what you need to know about accessing SQ

Re: building a web interface

2010-11-20 Thread Stef Mientki
e db through Python (famous last words...). > > My main problem right now is how to do the web interface. I don't know > much about web architecture, unfortunately. I think I need a CGI > script? > > What I would really like is to find a GUI tool to design the interface > tha

Re: building a web interface

2010-11-20 Thread Shel
;Further into the forest. Its getting darker" > which may be OK coming from a road but is pretty stupid if you're on your > way out of the forest toward the road. > > http://www.kitebird.com/articles/pydbapi.htmlwhich tells you what you > need to know about accessing SQL datab

Re: building a web interface

2010-11-20 Thread Shel
Thanks for your help. I know that they have Python and mySQL. They have mySQL set up so that they just have to create the db, which they've already done and I've defined the tables and modified the data and whatnot, so that seems good. Not sure about mod-python v. mod-wsgi. Ah, the Django thing

Re: building a web interface

2010-11-20 Thread Shel
Thanks for your help. I know that they have Python and mySQL. They have mySQL set up so that they just have to create the db, which they've already done and I've defined the tables and modified the data and whatnot, so that seems good. Not sure about mod-python v. mod-wsgi. Ah, the Django thing

Re: building a web interface

2010-11-20 Thread Shel
data rather than pulling in data > > from the db, but I think/hope it won't be too big of a deal to > > interact with the db through Python (famous last words...). > > > My main problem right now is how to do the web interface. I don't know > > much about web a

Re: building a web interface

2010-11-20 Thread Ian Kelly
of a deal to interact with the db through Python (famous last words...). Suggestion: unless you're intent on reinventing the wheel, why not just set up your web interface as a thin front-end for an existing IF engine? An excellent starting point for this would be digging up the s

Re: building a web interface

2010-11-21 Thread Martin Gregorie
On Sat, 20 Nov 2010 17:20:53 -0800, Shel wrote: > Sorry I wasn't clear about the db part. Most of the data has already > been written and/or generated and tested with the code. I do plan to > finish all the database stuff before going to the front end, but am just > thinking ahead about how to d

Re: building a web interface

2010-11-21 Thread Shel
tent on reinventing the wheel, why not just > set up your web interface as a thin front-end for an existing IF engine? >   An excellent starting point for this would be digging up the source > for InfocomBot [1], an AIM bot that acts as a simple wrapper around > Frotz [2].  My recollection

Re: building a web interface

2010-11-21 Thread Shel
No worries at all about repeating things. I wasn't clear, and I appreciate your going to the trouble of teaching me just about anything. Even things I think I know, I might not really know :-) Let's see... am okay with the relational design stuff. Thanks for the "EXPLAIN" verb. I am confused a

Re: building a web interface

2010-11-21 Thread Martin Gregorie
On Sun, 21 Nov 2010 15:40:10 -0800, Shel wrote: > I am confused about multiple simultaneous users, which I would like to > be able to accommodate. On the db side, I have a structure to store > data for each user, and know a bit about selectively locking data, > although I have not implemented tha

Re: building a web interface

2010-11-22 Thread Jean-Michel Pichavant
to do the web interface. I don't know much about web architecture, unfortunately. I think I need a CGI script? What I would really like is to find a GUI tool to design the interface that would have customizable templates or drag-and-drop elements or something, so I wouldn't have to co

Re: building a web interface

2010-11-25 Thread Shel
This is really great. I wish I could come up with some creative new ways to say thank you, but... thank you :-) Shel On Nov 21, 6:10 pm, Martin Gregorie wrote: > On Sun, 21 Nov 2010 15:40:10 -0800, Shel wrote: > > I am confused about multiple simultaneous users, which I would like to > > be able

Re: building a web interface

2010-11-25 Thread Alice Bevan–McGregor
Howdy! I'm mildly biased, being the author of the framework, but I can highly recommend WebCore for rapid prototyping of web applications; it has templating via numerous template engines, excellent JSON (AJAJ) support, and support for database back-ends via SQLAlchemy. It also has session su

Re: building a web interface

2010-11-25 Thread Shel
Will take a look after stuffing myself with turkey today (am in the US, where we give thanks by eating everything in sight). Thanks, Alice. Wait, did I just say "thanks"? Must go eat pie. On Nov 25, 12:36 am, Alice Bevan–McGregor wrote: > Howdy! > > I'm mildly biased, being the author of the f

python.org mailman web interface problem

2012-01-23 Thread Chris Rebert
Accessing http://mail.python.org/mailman/listinfo/ currently gives: """ Bug in Mailman version 2.1.12 We're sorry, we hit a bug! Please inform the webmaster for this site of this problem. Printing of traceback and other system information has been explicitly inhibited, but the webmaster can find

Reading a HP Printer Web Interface

2004-12-27 Thread rbt
determining if a site is indeed the Web interface to a HP printer? The goal is to remove all HP printers from a list of publicly available Web sites... I've tried this approach, but it gets messy quickly when I attempt to account for all possible combinations that HP uses: f = urllib2.ur

app with standalone gui and web interface

2006-10-02 Thread Daniel Nogradi
What would the simplest way to make an application that has both a web interface and runs from behind a web server but also can be used as a standalone app with a gui? More precisely is it possible to avoid creating an html/xml/whatever based web interface for the web version and separately

Re: app with standalone gui and web interface

2006-10-02 Thread Steve Holden
Daniel Nogradi wrote: > What would the simplest way to make an application that has both a web > interface and runs from behind a web server but also can be used as a > standalone app with a gui? More precisely is it possible to avoid > creating an html/xml/whatever based web interface

Re: app with standalone gui and web interface

2006-10-03 Thread [EMAIL PROTECTED]
Hi Daniel. > What would the simplest way to make an application that has both a web > interface and runs from behind a web server but also can be used as a > standalone app with a gui? More precisely is it possible to avoid > creating an html/xml/whatever based web interface for the

Re: app with standalone gui and web interface

2006-10-03 Thread Daniel Nogradi
> > What would the simplest way to make an application that has both a web > > interface and runs from behind a web server but also can be used as a > > standalone app with a gui? More precisely is it possible to avoid > > creating an html/xml/whatever based web inter

Re: app with standalone gui and web interface

2006-10-03 Thread [EMAIL PROTECTED]
> Johan, your way of doing it resembles XUL somewhat, although I can't > say I fully understand XUL I just took a look some days ago. Let me > see if I understand your approach: Yes it's a lot like XUL, but there are some major differences. The most important one is that, at least back then, you h

Re: app with standalone gui and web interface

2006-10-03 Thread olive
I agree with Steve and I would advise to use an Ajax toolkit (such as JQuery for example) which will help to make your UI act as a desktop application (and even better if you are creative). Olive. -- http://mail.python.org/mailman/listinfo/python-list