From: gaston <ga...@nt...> - 2004-04-27 18:23:24
|
Hi, I downloaded python carda about 2 weeks ago. I'm still doing the tutorials, and changing the minimal app. : ) The thing is, in the future, I'd like to do applications that work on your desktop but also that can connect to the internet. The thing is, I'd need to have some python scripts online in some server somewhere. Does any of the more experienced users know of any cheap python hosting where python scripts can be used to test and practice? Thanks for any help. G. |
From: Kevin A. <al...@se...> - 2004-04-27 18:33:49
|
On Apr 27, 2004, at 11:23 AM, gaston wrote: > Hi, I downloaded python carda about 2 weeks ago. I'm still doing the > tutorials, and changing the minimal app. : ) > > The thing is, in the future, I'd like to do applications that work on > your desktop but also that can connect to the internet. The thing is, > I'd need to have some python scripts online in some server somewhere. > > Does any of the more experienced users know of any cheap python > hosting where python scripts can be used to test and practice? > > Thanks for any help. > > G. http://www.python.org/cgi-bin/moinmoin/PythonHosting ka |
From: Adam R. <Ada...@ch...> - 2004-04-27 18:41:24
|
I like www.infolaunch.com small no bs web hosting shop. You get shell access too which is important. I consider them to be cheap at $9.95 a month. gaston wrote: > Hi, I downloaded python carda about 2 weeks ago. I'm still doing the > tutorials, and changing the minimal app. : ) > > The thing is, in the future, I'd like to do applications that work on > your desktop but also that can connect to the internet. The thing is, > I'd need to have some python scripts online in some server somewhere. > > Does any of the more experienced users know of any cheap python > hosting where python scripts can be used to test and practice? > > Thanks for any help. > > G. > > > > ------------------------------------------------------- > This SF.net email is sponsored by: The Robotic Monkeys at ThinkGeek > For a limited time only, get FREE Ground shipping on all orders of $35 > or more. Hurry up and shop folks, this offer expires April 30th! > http://www.thinkgeek.com/freeshipping/?cpg=12297 > _______________________________________________ > Pythoncard-users mailing list > Pyt...@li... > https://lists.sourceforge.net/lists/listinfo/pythoncard-users |
From: gaston <ga...@nt...> - 2004-04-27 19:17:12
|
Adam Russell wrote: > I like www.infolaunch.com > small no bs web hosting shop. You get shell access too which is > important. I consider them to be cheap at $9.95 a month. > > > gaston wrote: > >> Hi, I downloaded python carda about 2 weeks ago. I'm still doing the >> tutorials, and changing the minimal app. : ) >> >> The thing is, in the future, I'd like to do applications that work on >> your desktop but also that can connect to the internet. The thing is, >> I'd need to have some python scripts online in some server somewhere. >> >> Does any of the more experienced users know of any cheap python >> hosting where python scripts can be used to test and practice? >> >> Thanks for any help. >> >> G. >> >> >> >> ------------------------------------------------------- >> This SF.net email is sponsored by: The Robotic Monkeys at ThinkGeek >> For a limited time only, get FREE Ground shipping on all orders of $35 >> or more. Hurry up and shop folks, this offer expires April 30th! >> http://www.thinkgeek.com/freeshipping/?cpg=12297 >> _______________________________________________ >> Pythoncard-users mailing list >> Pyt...@li... >> https://lists.sourceforge.net/lists/listinfo/pythoncard-users > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: The Robotic Monkeys at ThinkGeek > For a limited time only, get FREE Ground shipping on all orders of $35 > or more. Hurry up and shop folks, this offer expires April 30th! > http://www.thinkgeek.com/freeshipping/?cpg=12297 > _______________________________________________ > Pythoncard-users mailing list > Pyt...@li... > https://lists.sourceforge.net/lists/listinfo/pythoncard-users > > Thank you for the tips. I'll look into both links. Gaston. |
From: Andrei <pro...@re...> - 2004-04-28 17:41:09
|
gaston wrote on Tue, 27 Apr 2004 12:23:16 -0600: > Does any of the more experienced users know of any cheap python hosting > where python scripts can be used to test and practice? For testing and practice you can also run a webserver locally. On Windows you could look at e.g. Abyss webserver for a really simple solution, but you can also get heavy hitters like Apache to run locally. -- Yours, Andrei ===== Real contact info (decode with rot13): cebwrpg5@jnanqbb.ay. Fcnz-serr! Cyrnfr qb abg hfr va choyvp cbfgf. V ernq gur yvfg, fb gurer'f ab arrq gb PP. |
From: Kevin A. <al...@se...> - 2004-04-28 18:41:14
|
On Apr 27, 2004, at 11:54 AM, Andrei wrote: > gaston wrote on Tue, 27 Apr 2004 12:23:16 -0600: > >> Does any of the more experienced users know of any cheap python >> hosting >> where python scripts can be used to test and practice? > > For testing and practice you can also run a webserver locally. On > Windows > you could look at e.g. Abyss webserver for a really simple solution, > but > you can also get heavy hitters like Apache to run locally. > If you just want to run locally, you can use the built-in Python web server classes or the webserver sample which wraps those classes, supports CGI, and a simple visual log of incoming requests. The code needs to be simplified for Python 2.3 since most of the workaround code is no longer needed and just mirrors what is now included with Python 2.3 (2.2.x was broken and couldn't deal with POST from IE browsers). http://pythoncard.sourceforge.net/samples/webserver.html ka |