Re: Python web server weirdness SOLVED

2018-06-07 Thread Gregory Ewing
Steven D'Aprano wrote: Never mind -- it turned out I had an "index.html" file in the directory which had been wget'ed from LiveJournal. That's okay, then. The other possibility was that your computer had been recruited into an evil botnet set up by LiveJournal to create backup servers for their

Re: Python web server weirdness

2018-06-07 Thread Steven D'Aprano
On Thu, 07 Jun 2018 13:32:10 +, Steven D'Aprano wrote: > python3.5 -m http.server 8000 [...] Thank you to everyone who responded, pointing out that I should check for an index.html file. That was exactly the problem. And yes, I acknowledge that my original post was lacking in some necessa

Re: Python web server weirdness

2018-06-07 Thread Tim Chase
On 2018-06-07 13:32, Steven D'Aprano wrote: > I'm following the instructions here: > > https://docs.python.org/3/library/http.server.html > > and running this from the command line as a regular unprivileged > user: > > python3.5 -m http.server 8000 > > What I expected was a directory listing of

Re: Python web server weirdness

2018-06-07 Thread Ed Kellett
On 2018-06-07 14:32, Steven D'Aprano wrote: > I'm following the instructions here: > > https://docs.python.org/3/library/http.server.html > > > and running this from the command line as a regular unprivileged user: > > python3.5 -m http.server 8000 > > What I expected was a directory listing o

Re: Python web server weirdness SOLVED

2018-06-07 Thread Steven D'Aprano
On Thu, 07 Jun 2018 13:32:10 +, Steven D'Aprano wrote: [...] > python3.5 -m http.server 8000 > > What I expected was a directory listing of my current directory. > > What I got was Livejournal's front page. Never mind -- it turned out I had an "index.html" file in the directory which had b

Re: Python web server weirdness

2018-06-07 Thread Grant Edwards
On 2018-06-07, Steven D'Aprano wrote: > I'm following the instructions here: > > https://docs.python.org/3/library/http.server.html > > > and running this from the command line as a regular unprivileged user: > > python3.5 -m http.server 8000 > > What I expected was a directory listing of my curre

Re: Python web server weirdness

2018-06-07 Thread Grant Edwards
On 2018-06-07, Steven D'Aprano wrote: > I'm following the instructions here: > > https://docs.python.org/3/library/http.server.html > > > and running this from the command line as a regular unprivileged user: > > python3.5 -m http.server 8000 > > What I expected was a directory listing of my curre

Re: Python Web Scrapping : Within href readonly those value that have href in it

2017-01-16 Thread Jesse Alama
To complement what Peter wrote: I'd approach this problem using XPath. XPath is a query language for XML/HTML documents; it's a great tool to have in your web scraping toolbox (among other tasks). With Python's excellent lxml library you can do some XPath processing. Here's how I might tackle this

Re: Python Web Scrapping : Within href readonly those value that have href in it

2017-01-14 Thread Peter Otten
shahs...@gmail.com wrote: > I am trying to scrape a webpage just for learning. In that webpage there > are multiple "a" tags. consider the below code > > Something > > Something These are probaly all forward slashes. > Now i want to read only those href in which there is http. My Current co

RE: Python Web Routing Benchmark

2012-11-20 Thread Andriy Kornatskyy
Web Routing Benchmark has been updated with latest version of various web frameworks.  http://mindref.blogspot.com/2012/10/python-web-routing-benchmark.html Note, wheezy.web seo routing benchmark has been improved by approximately 40%. Thanks. Andriy Kornatskyy -

Re: Python web-framework+db with the widest scalability?

2012-05-14 Thread elektrrrus
Hi, From my experience while NoSQL databases are very fast and scalable, there is lack of _good_ support for popular frameworks. I've try with django and mongoengine, but results was poor. In my company we're building now large api-driven application with django and postgresql as a base. Django

Re: Python web-framework with the widest scalability?

2012-05-12 Thread Tim Chase
On 05/12/12 03:30, Alec Taylor wrote: > I am building a project requiring high performance and scalability, > entailing: Most of the frameworks are sufficiently scalable. Scalability usually stems from design decisions (architecture and algorithm) and caching, and you'll usually hit bandwidth or

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 service or Apache?

2009-10-26 Thread Gabriel Genellina
En Sun, 25 Oct 2009 17:47:43 -0300, Peng Yu escribió: Although, python can be used to provide web service. The following webpage also mentioned, "Apache the best and most widely used web server on the Internet today, check it out. If you want to run your own web server this is the one to get, y

Re: python web service or Apache?

2009-10-26 Thread Paul Rubin
ru...@yahoo.com writes: > Apache requires root access to the server machine, Only to access the privileged ports. > A small simple custom web server built with Python will likely... > You can run it on a non-privileged port if you do not have > root access to your server machine. You can do that

Re: python web service or Apache?

2009-10-26 Thread rurpy
On 10/26/2009 08:00 AM, Peng Yu wrote: > On Sun, Oct 25, 2009 at 11:09 PM, Simon Forman wrote: >> On Sun, Oct 25, 2009 at 4:47 PM, Peng Yu wrote: >>> Although, python can be used to provide web service. The following >>> webpage also mentioned, "Apache the best and most widely used web >>> server

Re: python web service or Apache?

2009-10-26 Thread Simon Forman
On Mon, Oct 26, 2009 at 10:00 AM, Peng Yu wrote: > On Sun, Oct 25, 2009 at 11:09 PM, Simon Forman wrote: >> On Sun, Oct 25, 2009 at 4:47 PM, Peng Yu wrote: >>> Although, python can be used to provide web service. The following >>> webpage also mentioned, "Apache the best and most widely used web

Re: python web service or Apache?

2009-10-26 Thread Peng Yu
On Sun, Oct 25, 2009 at 11:09 PM, Simon Forman wrote: > On Sun, Oct 25, 2009 at 4:47 PM, Peng Yu wrote: >> Although, python can be used to provide web service. The following >> webpage also mentioned, "Apache the best and most widely used web >> server on the Internet today, check it out. If you

Re: python web service or Apache?

2009-10-25 Thread Simon Forman
On Sun, Oct 25, 2009 at 4:47 PM, Peng Yu wrote: > Although, python can be used to provide web service. The following > webpage also mentioned, "Apache the best and most widely used web > server on the Internet today, check it out. If you want to run your > own web server this is the one to get, yo

Re: python web programming for PHP programmers

2008-12-24 Thread D'Arcy J.M. Cain
On Wed, 24 Dec 2008 14:40:31 + (UTC) Nikola Skoric wrote: > a general python tutorial, I just need a tutorial on how to make a > hello world server side script with python. Any suggestions? #! /usr/bin/env python import sys, re colour = re.sub('=', '=#', ''.join(sys.argv[1:])) print """Con

Re: python web programming for PHP programmers

2008-12-24 Thread ajaksu
On Dec 24, 12:40 pm, Nikola Skoric wrote: > I0m a python newbie with PHP background. I've tried to make a web app > from one of my python scripts (which I haven't done before) and I > ended up with: > > echo shell_exec("python foobar.py"); > ?> > which works really nice :-D Clever :) Python can

Re: python web programming for PHP programmers

2008-12-24 Thread Federico Moreira
You can try also web2py (http://mdp.cti.depaul.edu/) but i think you may be interested on http://www.modpython.org/ -- http://mail.python.org/mailman/listinfo/python-list

Re: python web programming for PHP programmers

2008-12-24 Thread Diez B. Roggisch
Nikola Skoric schrieb: I0m a python newbie with PHP background. I've tried to make a web app from one of my python scripts (which I haven't done before) and I ended up with: which works really nice :-D For some reason I can't find no "quick and dirty python web programming tutorial for PHP pro

Re: Python web framework choice

2008-08-13 Thread Bruno Desthuilliers
[EMAIL PROTECTED] a écrit : Quoting Mahdi <[EMAIL PROTECTED]>: I need to develop a medium-sized database web application for my company. Given that: I don't know much about building web UI(s) but i have fair knowledge about HTML & My schedule is tight. a recommendation is v v v appreciated.

Re: Python web framework choice

2008-08-12 Thread david . lyon
Quoting Mahdi <[EMAIL PROTECTED]>: I need to develop a medium-sized database web application for my company. Given that: I don't know much about building web UI(s) but i have fair knowledge about HTML & My schedule is tight. a recommendation is v v v appreciated. I'm in the same boat a f

Re: Python web framework choice

2008-08-12 Thread Kay Schluehr
On 13 Aug., 07:08, Mahdi <[EMAIL PROTECTED]> wrote: > Guys! > > I need to develop a medium-sized database web application for my > company. Given that: > I don't know much about building web UI(s) but i have fair knowledge > about HTML & My schedule is tight. > > a recommendation is v v v appreci

Re: Python web development that resembles PHP or classic ASP

2008-05-25 Thread Patrick Mullen
Hi Erik, As far as I know the only full web framework that works with a primarily inline style is spyce, which is not currently under active development. I used it for a while and it was the first python framework I used. I think it's pretty good, if a little bit of an underdog. That said, usin

Re: Python web aps - A matter of security

2008-01-05 Thread Daniel Fetchinson
On 1/5/08, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Hello, > > I'm developing a Python-based web ap, but don't understand how to best > organize the modules and set permissions for maximum security. > > Here's how the Python code for my ap is organized: > > 1) I have Python modules in a proje

Re: Python web frameworks

2007-11-29 Thread TYR
On Nov 29, 3:15 pm, Aaron Watters <[EMAIL PROTECTED]> wrote: > On Nov 22, 11:22 pm, SamFeltus <[EMAIL PROTECTED]> wrote: > > > """Perhaps we need a pythonic FRONTEND. """ > > > Should have happened years ago. > > It did. Mark Hammond embedded Python under MSIE about > the same time javascript and

Re: Python web frameworks

2007-11-29 Thread Aaron Watters
On Nov 22, 11:22 pm, SamFeltus <[EMAIL PROTECTED]> wrote: > """Perhaps we need a pythonic FRONTEND. """ > > Should have happened years ago. It did. Mark Hammond embedded Python under MSIE about the same time javascript and java applets came along (94, maybe?) It didn't fly because of political an

Re: Python web frameworks

2007-11-25 Thread Jan Claeys
Op Fri, 23 Nov 2007 09:29:38 -0800, schreef BartlebyScrivener: > I'm just learning Django and feeling my way through all of this server > terminology. Where does Django's memcached feature fit into all of this? > When you all speak of start up costs and memory intensive loading for > each requests

Re: Python web frameworks

2007-11-23 Thread BartlebyScrivener
I'm just learning Django and feeling my way through all of this server terminology. Where does Django's memcached feature fit into all of this? When you all speak of start up costs and memory intensive loading for each requests, doesn't the caching feature eliminate most of that overhead? http://w

Re: Python web frameworks

2007-11-23 Thread joe jacob
On Nov 21, 10:27 pm, Steven Bethard <[EMAIL PROTECTED]> wrote: > Jeff wrote: > > On Nov 21, 6:25 am, Bruno Desthuilliers > [EMAIL PROTECTED]> wrote: > >> joe jacob a écrit : > >> (snip) > > >>> Thanks everyone for the response. From the posts I understand that > >>> Django and pylons are the best.

Re: Python web frameworks

2007-11-23 Thread TYR
On Nov 23, 4:22 am, SamFeltus <[EMAIL PROTECTED]> wrote: > """Perhaps we need a pythonic FRONTEND. """ > > Should have happened years ago. Python Internet Environment: PIE. -- http://mail.python.org/mailman/listinfo/python-list

Re: Python web frameworks

2007-11-22 Thread Ian Bicking
On Nov 22, 11:00 am, Istvan Albert <[EMAIL PROTECTED]> wrote: > On Nov 21, 12:15 am, Graham Dumpleton <[EMAIL PROTECTED]> > wrote: > > > I would say that that is now debatable. Overall mod_wsgi is probably a > > better package in terms of what it has to offer. Only thing against > > mod_wsgi at thi

Re: Python web frameworks

2007-11-22 Thread SamFeltus
"""Perhaps we need a pythonic FRONTEND. """ Should have happened years ago. -- http://mail.python.org/mailman/listinfo/python-list

Re: Python web frameworks

2007-11-22 Thread TYR
Perhaps we need a pythonic FRONTEND. If you're meant to be able to run java code in a browser vm; and flash; and javascript...why not a reduced version of python? I'm thinking a sandboxed interpreter, perhaps based on EmbeddedPython, and a restricted set of classes; core logic, string and maths,

Re: Python web frameworks

2007-11-22 Thread Graham Dumpleton
On Nov 23, 4:00 am, Istvan Albert <[EMAIL PROTECTED]> wrote: > On Nov 21, 12:15 am, Graham Dumpleton <[EMAIL PROTECTED]> > wrote: > > > I would say that that is now debatable. Overall mod_wsgi is probably a > > better package in terms of what it has to offer. Only thing against > > mod_wsgi at this

Re: Python web frameworks

2007-11-22 Thread Ian Bicking
On Nov 20, 7:55 am, "Joe Riopel" <[EMAIL PROTECTED]> wrote: > On Nov 20, 2007 8:46 AM, BartlebyScrivener <[EMAIL PROTECTED]> wrote: > > > Django comes with its own little server so that you don't have > > to set up Apache on your desktop to play with it. > > Pylons too, it's good for development b

Re: Python web frameworks

2007-11-22 Thread Istvan Albert
On Nov 21, 12:15 am, Graham Dumpleton <[EMAIL PROTECTED]> wrote: > I would say that that is now debatable. Overall mod_wsgi is probably a > better package in terms of what it has to offer. Only thing against > mod_wsgi at this point is peoples willingness to accept something that > is new in conju

Re: Python web frameworks

2007-11-21 Thread Steven Bethard
Jeff wrote: > On Nov 21, 6:25 am, Bruno Desthuilliers [EMAIL PROTECTED]> wrote: >> joe jacob a écrit : >> (snip) >> >>> Thanks everyone for the response. From the posts I understand that >>> Django and pylons are the best. By searching the net earlier I got the >>> same information that Django is

Re: Python web frameworks

2007-11-21 Thread BartlebyScrivener
On Nov 21, 4:42 am, joe jacob <[EMAIL PROTECTED]> wrote: > Django is best among the frameworks so I > downloaded it and I found it very difficult to configure. I referred > the djangobook. It's not a turnkey type thing like WordPress or Joomla. It's a webframework. Also watch versions. The book ex

Re: Python web frameworks + adobe flex

2007-11-21 Thread SamFeltus
I never used the Django AMF, I use JSON to go between Python and Flex. It works well, but lacks easy 2 way communication of course. Interfacing with Flex is a gaping hole in the Python libraries. Python needs a web framework that embraces Flex from the ground up, HTML being such a limited web disp

RE: Python web frameworks + adobe flex

2007-11-21 Thread Sells, Fred
slight shift of topic here. I'm a newbie at standard web stuff. Mostly java webstart and a little mod_python. I experimented with Adobe Flex and really loved it for doing the front end. The backend needs to provide xml, json or AMF (an adobe proprietary binary format). For prototyping, I was

Re: Python web frameworks

2007-11-21 Thread Joe Riopel
On Nov 21, 2007 5:42 AM, joe jacob <[EMAIL PROTECTED]> wrote: > Thanks everyone for the response. From the posts I understand that > Django and pylons are the best. By searching the net earlier I got the > same information that Django is best among the frameworks so I > downloaded it and I found it

Re: Python web frameworks

2007-11-21 Thread Jeff
On Nov 21, 6:25 am, Bruno Desthuilliers wrote: > joe jacob a écrit : > (snip) > > > Thanks everyone for the response. From the posts I understand that > > Django and pylons are the best. By searching the net earlier I got the > > same information that Django is best among the frameworks so I > > d

RE: Python web frameworks

2007-11-21 Thread Sells, Fred
-snip-- > > Thanks everyone for the response. From the posts I understand that > Django and pylons are the best. By searching the net earlier I got the > same information that Django is best among the frameworks so I > downloaded it and I found it very difficult to configure. I referred > the dja

Re: Python web frameworks

2007-11-21 Thread Bruno Desthuilliers
joe jacob a écrit : (snip) > Thanks everyone for the response. From the posts I understand that > Django and pylons are the best. By searching the net earlier I got the > same information that Django is best among the frameworks so I > downloaded it and I found it very difficult to configure. ???

Re: Python web frameworks

2007-11-21 Thread joe jacob
On Nov 21, 10:15 am, Graham Dumpleton <[EMAIL PROTECTED]> wrote: > On Nov 21, 1:37 pm, BartlebyScrivener <[EMAIL PROTECTED]> wrote: > > > > > On Nov 20, 3:39 pm, Graham Dumpleton <[EMAIL PROTECTED]> > > wrote: > > > > This only holds if actually hosted on Apache. As Django these days > > > supports

Re: Python web frameworks

2007-11-20 Thread Graham Dumpleton
On Nov 21, 1:37 pm, BartlebyScrivener <[EMAIL PROTECTED]> wrote: > On Nov 20, 3:39 pm, Graham Dumpleton <[EMAIL PROTECTED]> > wrote: > > > This only holds if actually hosted on Apache. As Django these days > > supports WSGI interface there is nothing to stop it being run with > > other hosting solu

Re: Python web frameworks

2007-11-20 Thread BartlebyScrivener
On Nov 20, 3:39 pm, Graham Dumpleton <[EMAIL PROTECTED]> wrote: > This only holds if actually hosted on Apache. As Django these days > supports WSGI interface there is nothing to stop it being run with > other hosting solutions that support WSGI. So, you could host it under > paster or CherryPy WS

Re: Python web frameworks

2007-11-20 Thread Graham Dumpleton
On Nov 21, 2:33 am, Istvan Albert <[EMAIL PROTECTED]> wrote: > On Nov 20, 9:42 am, "Diez B. Roggisch" <[EMAIL PROTECTED]> wrote: > > > > 12/7. Django comes with its own little server so that you don't have > > > to set up Apache on your desktop to play with it. > > > I was rather shocked to learn t

Re: Python web frameworks

2007-11-20 Thread Jeff
On Nov 20, 10:00 am, Thomas Wittek <[EMAIL PROTECTED]> wrote: > Jeff: > > > I don't know much about the others. Turbo gears uses Mochikit, which > > hasn't had a new stable release in some time. I prefer jQuery myself. > > You can use jQuery with TurboGears if you develop custom widgets (I do so)

Re: Python web frameworks

2007-11-20 Thread Frank Miles
On Tue, 20 Nov 2007, joe jacob wrote: > There are a lot of web frameworks for python like django, mod_python, > spyce, turbo gears, Zope, Cherrypy etc. Which one is the best in terms > of performance and ease of study. Personally I found zope/plone to be very much its own enormously complex world

Re: Python web frameworks

2007-11-20 Thread Istvan Albert
On Nov 20, 9:42 am, "Diez B. Roggisch" <[EMAIL PROTECTED]> wrote: > > 12/7. Django comes with its own little server so that you don't have > > to set up Apache on your desktop to play with it. > > I was rather shocked to learn that django only has this tiny server and does > not come with a stand-a

Re: Python web frameworks

2007-11-20 Thread Bruno Desthuilliers
joe jacob a écrit : > There are a lot of web frameworks for python like django, mod_python, > spyce, turbo gears, Zope, Cherrypy etc. Which one is the best in terms > of performance and ease of study. As far as I'm concerned, the winners are Django and Pylons (my own preference going to Pylons).

Re: Python web frameworks

2007-11-20 Thread Paul Boddie
On 20 Nov, 15:42, "Diez B. Roggisch" <[EMAIL PROTECTED]> wrote: > > 12/7. Django comes with its own little server so that you don't have > > to set up Apache on your desktop to play with it. > > I was rather shocked to learn that django only has this tiny server and does > not come with a stand-alo

Re: Python web frameworks

2007-11-20 Thread Thomas Wittek
Jeff: > I don't know much about the others. Turbo gears uses Mochikit, which > hasn't had a new stable release in some time. I prefer jQuery myself. You can use jQuery with TurboGears if you develop custom widgets (I do so). No problem here. -- Thomas Wittek Web: http://gedankenkonstrukt.de/ J

Re: Python web frameworks

2007-11-20 Thread Diez B. Roggisch
> 12/7. Django comes with its own little server so that you don't have > to set up Apache on your desktop to play with it. I was rather shocked to learn that django only has this tiny server and does not come with a stand-alone server and is supposed to run as mod_python/cgi-driven app through ap

Re: Python web frameworks

2007-11-20 Thread Bernard
On 20 nov, 07:19, joe jacob <[EMAIL PROTECTED]> wrote: > There are a lot of web frameworks for python like django, mod_python, > spyce, turbo gears, Zope, Cherrypy etc. Which one is the best in terms > of performance and ease of study. I'm making web apps with CherryPy at work and it's quite good.

Re: Python web frameworks

2007-11-20 Thread Joe Riopel
On Nov 20, 2007 8:46 AM, BartlebyScrivener <[EMAIL PROTECTED]> wrote: > Django comes with its own little server so that you don't have > to set up Apache on your desktop to play with it. Pylons too, it's good for development but using the bundled web server is not recommended for production. --

Re: Python web frameworks

2007-11-20 Thread BartlebyScrivener
On Nov 20, 6:19 am, joe jacob <[EMAIL PROTECTED]> wrote: > There are a lot of web frameworks for python like django, mod_python, > spyce, turbo gears, Zope, Cherrypy etc. Which one is the best in terms > of performance and ease of study. I'm looking at django mainly. I hope the veterans jump in wi

Re: Python web frameworks

2007-11-20 Thread Joe Riopel
On Nov 20, 2007 7:19 AM, joe jacob <[EMAIL PROTECTED]> wrote: > There are a lot of web frameworks for python like django, mod_python, > spyce, turbo gears, Zope, Cherrypy etc. Which one is the best in terms > of performance and ease of study. I wouldn't classify mod_python as a web framework: "Mod

Re: Python web frameworks

2007-11-20 Thread Jeff
The only one that I have used extensively is Django, which is very easy to use and quite powerful in the arena for which it was created. It has a powerful admin interface that automatically generates data entry forms for content producers and a decent template system. It has some definite drawback

Re: Python Web Programming - looking for examples of solid high-traffic sites

2007-05-24 Thread Victor Kryukov
Hello list, thanks a lot to everybody for their suggestions. We're yet to make our final decision, and the information you've provided is really helpful. Best, Victor. -- http://mail.python.org/mailman/listinfo/python-list

Re: Python Web Programming - looking for examples of solid high-traffic sites

2007-05-22 Thread Michael Ströder
John Nagle wrote: > Sure they do. I have a complex web site, "http://www.downside.com";, > that's implemented with Perl, Apache, and MySQL. It automatically reads > SEC > filings and parses them to produce financial analyses. It's been > running for seven years, and hasn't been modified in f

Re: Python Web Programming - looking for examples of solid high-traffic sites

2007-05-21 Thread ddddddddd dddddddddddddd
[Bruno Desthuilliers]> John, I'm really getting tired of your systemic and totally > unconstructive criticism. If *you* are not happy with Python, by all > means use another language. You are saying bad things about my darling! Python is my baby! Shame on you John Nagle, if you do it again I'll r

Re: Python Web Programming - looking for examples of solid high-traffic sites

2007-05-21 Thread João Santos
Please have a look at Plone and Zope. "During the month of January 2006, we've had approx. 167 million hits" plone.org On 2007-05-16 23:04:17 +0200, Victor Kryukov <[EMAIL PROTECTED]> said: > Hello list, > > our team is going to rewrite our existing web-site, which has a lot of > dynamic cont

Re: Python Web Programming - looking for examples of solid high-traffic sites

2007-05-21 Thread Bruno Desthuilliers
John Nagle a écrit : (snip) >YouTube's home page is PHP. Try "www.youtube.com/index.php". > That works, while the obvious alternatives don't. > If you look at the page HTML, you'll see things like > >onclick="_hbLink('LogIn','UtilityLinks');">Log In > > So there's definitely PHP

Re: Python Web Programming - looking for examples of solid high-traffic sites

2007-05-21 Thread Bruno Desthuilliers
Ivan Tikhonov a écrit : > Use php. I am lead programmer/maintainer of big website with a lot of > interactive stuff in user's backoffice and with a lot of interraction > to our non-web apps. > > PHP is a crap, but programming for web in python is a pain in the ass. Strange enough, MVHO on this is

Re: Python Web Programming - looking for examples of solid high-traffic sites

2007-05-21 Thread Matthew Nuzum
On May 16, 4:04 pm, Victor Kryukov <[EMAIL PROTECTED]> wrote: > Hello list, > > our team is going to rewrite our existing web-site, which has a lot of > dynamic content and was quickly prototyped some time ago. See #3 below > Our main requirement for tools we're going to use is rock-solid > stabil

RE: Python Web Programming - looking for examples of solidhigh-tr affic sites

2007-05-21 Thread Sells, Fred
I just started using flex (flex.org) from Adobe for the front end and am quite amazed at what it can do. Good docs. Clean client/server api if you like xml. It's relatively new so you still have to turn over some rocks and kiss some frogs to figure out how to get exactly the behavior you want in

Re: Python Web Programming - looking for examples of solid high-traffic sites

2007-05-21 Thread Ivan Tikhonov
Use php. I am lead programmer/maintainer of big website with a lot of interactive stuff in user's backoffice and with a lot of interraction to our non-web apps. PHP is a crap, but programming for web in python is a pain in the ass. And php programmers are cheaper. Especialy avoid mod_python. IMHO

Re: Python Web Programming - looking for examples of solid high-traffic sites

2007-05-20 Thread Rico
On May 16, 2:04 pm, Victor Kryukov <[EMAIL PROTECTED]> wrote: > Hello list, > > our team is going to rewrite our existing web-site, which has a lot of > dynamic content and was quickly prototyped some time ago. > > Today, as we get better idea of what we need, we're going to re-write > everything f

Re: Python Web Programming - looking for examples of solid high-traffic sites

2007-05-20 Thread Michael Bayer
On May 16, 5:04 pm, Victor Kryukov <[EMAIL PROTECTED]> wrote: > > Our main requirement for tools we're going to use is rock-solid > stability. As one of our team-members puts it, "We want to use tools > that are stable, has many developer-years and thousands of user-years > behind them, and that we

Re: Python Web Programming - looking for examples of solid high-traffic sites

2007-05-20 Thread Bruno Desthuilliers
John Nagle a écrit : > Bruno Desthuilliers wrote: > >> John Nagle a écrit : >> >>> Victor Kryukov wrote: >>> Hello list, our team is going to rewrite our existing web-site, which has a lot of dynamic content and was quickly prototyped some time ago. >>> >>> >>> ... >>> Our

Re: Python Web Programming - looking for examples of solid high-traffic sites

2007-05-18 Thread Josiah Carlson
John Nagle wrote: >Many of the basic libraries for web related functions do have > problems. Even standard modules like "urllib" and "SSL" are buggy, > and have been for years. Outside the standard modules, it gets > worse, especially for ones with C components. Version incompatibility > for

Re: Python Web Programming - looking for examples of solid high-traffic sites

2007-05-18 Thread Jorge Godoy
John Nagle <[EMAIL PROTECTED]> writes: >As a direct result of this, neither the Linux distro builders like > Red Hat nor major hosting providers provide Python environments that > just work. That's reality. Try SuSE, OpenSUSE, Ubuntu... They "just work". I've never had any problem installi

Re: Python Web Programming - looking for examples of solid high-traffic sites

2007-05-18 Thread John Nagle
John Nagle wrote: >YouTube's home page is PHP. Try "www.youtube.com/index.php". > That works, while the obvious alternatives don't. > If you look at the page HTML, you'll see things like > >onclick="_hbLink('LogIn','UtilityLinks');">Log In > > So there's definitely PHP inside Yo

Re: Python Web Programming - looking for examples of solid high-traffic sites

2007-05-18 Thread Michele Simionato
On May 16, 11:04 pm, Victor Kryukov <[EMAIL PROTECTED]> wrote: > > Our main requirement for tools we're going to use is rock-solid > stability. As one of our team-members puts it, "We want to use tools > that are stable, has many developer-years and thousands of user-years > behind them, and that w

Re: Python Web Programming - looking for examples of solid high-traffic sites

2007-05-18 Thread John Nagle
Alex Martelli wrote: > Jarek Zgoda <[EMAIL PROTECTED]> wrote: > > >>Daniel Nogradi napisa?(a): >> >> For example, it HAS been published elsewhere that YouTube uses lighttpd, not Apache: . >>> >>>How do you explain these, then: >>> >>>h

Re: Python Web Programming - looking for examples of solid high-traffic sites

2007-05-18 Thread Daniel Nogradi
> > >> For example, it HAS been published elsewhere that YouTube uses lighttpd, > > >> not Apache: . > > > > > > How do you explain these, then: > > > > > > http://www.youtube.com/results.xxx > > > http://www.youtube.com/results.php > > > http:/

Re: Python Web Programming - looking for examples of solid high-traffic sites

2007-05-18 Thread John Nagle
Bruno Desthuilliers wrote: > John Nagle a écrit : > >> Victor Kryukov wrote: >> >>> Hello list, >>> >>> our team is going to rewrite our existing web-site, which has a lot of >>> dynamic content and was quickly prototyped some time ago. >> >> ... >> >>> Our main requirement for tools we're going t

Re: Python Web Programming - looking for examples of solid high-traffic sites

2007-05-18 Thread Daniel Nogradi
> > >> For example, it HAS been published elsewhere that YouTube uses lighttpd, > > >> not Apache: . > > > > > > How do you explain these, then: > > > > > > http://www.youtube.com/results.xxx > > > http://www.youtube.com/results.php > > > http:/

Re: Python Web Programming - looking for examples of solid high-traffic sites

2007-05-18 Thread Alex Martelli
Jarek Zgoda <[EMAIL PROTECTED]> wrote: > Daniel Nogradi napisa?(a): > > >> For example, it HAS been published elsewhere that YouTube uses lighttpd, > >> not Apache: . > > > > How do you explain these, then: > > > > http://www.youtube.com/res

  1   2   3   >