Best Python Web Framework ?

2009-04-21 Thread SKYLAB
Greetings.. First , my english is not good . I heard that was written in python ( Youtube Programming Language : PYTHON :S ) Correct ? That's not correct ? Then youtube is PHP application ? That's correct ; Which python web framework in friendfeed ? Web.py ? Django ? web2py ? Thanks.. -- http

Re: Best Python Web Framework ?

2009-04-21 Thread Stefan Behnel
Hi, SKYLAB wrote: First , my english is not good . Note that there are many python news groups and mailing lists. There may also be one in your native language. Stefan -- http://mail.python.org/mailman/listinfo/python-list

Re: Best Python Web Framework ?

2009-04-21 Thread Wes James
On Tue, Apr 21, 2009 at 12:46 PM, SKYLAB zky...@gmail.com wrote: Greetings.. First , my english is not good . I heard that was written in python ( Youtube Programming Language : PYTHON :S ) Correct ? That's not correct ? Then youtube is PHP application ? That's correct ; Which python web

Re: Best Python Web Framework ?

2009-04-21 Thread SKYLAB
Thanks all post. my english is not good . But techincal english very good. Anyway , i understand english documents. That's not problem. -- http://mail.python.org/mailman/listinfo/python-list

Re: Best Python Web Framework ?

2009-04-21 Thread laplacia...@gmail.com
On Apr 21, 2:46 pm, SKYLAB zky...@gmail.com wrote: Greetings.. First , my english is not good . I heard that was written in python ( Youtube Programming Language : PYTHON :S ) Correct ? That's not correct ? Then youtube is PHP application ? That's correct ; Which python web framework

IIS python web application mapping issue - resolved

2009-04-03 Thread davidj411
i searched the internet for an hour , never found this info, and figured it out myself. posting this so that others won't have to look so hard. ran across this issue and it seems that nobody really documented this correctly on http://support.microsoft.com/kb/276494 in IIS i could not add the

Re: IIS python web application mapping issue - resolved

2009-04-03 Thread davidj411
I thought i was being clever but not only did i typo , but it does not work with the -u for unbuffered option. remove the -u to avoid the ugly message: CGI Error The specified CGI application misbehaved by not returning a complete set of HTTP headers. I am going to use the CGI script to upload

Re: Local python web server problem

2009-02-10 Thread Farsheed Ashouri
Thanks guys, Really appreciate your help. I am trying to solve the problem and will keep you posted when I found a solution. Farsheed Ashouri, Tehran, Iran -- http://mail.python.org/mailman/listinfo/python-list

Local python web server problem

2009-02-09 Thread Farsheed Ashouri
Hi everyone. I have started to develop a web base software for renderfarm managing. I run the cherrypy hello world! example and when I visit 127.0.0.1:8080 on firefox, a nice Hello World appears. I am on ubuntu and my ip in local network is 192.168.100.18 but when I visit 192.168.100.18, there is

Re: Local python web server problem

2009-02-09 Thread Gerhard Häring
Farsheed Ashouri wrote: Hi everyone. I have started to develop a web base software for renderfarm managing. I run the cherrypy hello world! example and when I visit 127.0.0.1:8080 on firefox, a nice Hello World appears. I am on ubuntu and my ip in local network is 192.168.100.18 but when I

Re: Local python web server problem

2009-02-09 Thread Rob
I run the cherrypy hello world! example and when I visit 127.0.0.1:8080 on firefox, a nice Hello World appears. I am on ubuntu and my ip in local network is 192.168.100.18 but when I visit 192.168.100.18, there is another page: It Works!. What is It Works!? and when I type

python web programming for PHP programmers

2008-12-24 Thread Nikola Skoric
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: ?php echo shell_exec(python foobar.py); ? which works really nice :-D For some reason I can't find no quick and dirty python web programming

Re: python web programming for PHP programmers

2008-12-24 Thread Diez B. Roggisch
python web programming tutorial for PHP programmers on google. :-D I don't need a general python tutorial, I just need a tutorial on how to make a hello world server side script with python. Any suggestions? Try googling mod_wsgi. While real python web-programming is usually done a bit different

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 ajaksu
:) Python can work in a similar way to PHP if your server supports it, but Python also allows you to create the server itself. For some reason I can't find no quick and dirty python web programming tutorial for PHP programmers on google. :-D I don't need a general python tutorial, I just need

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 nick-n...@net4u.hr 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('=', '=#',

Re: [ANN] Pyjamas 0.4: Python Web Toolkit Release

2008-12-03 Thread Luke Kenneth Casson Leighton
On Wed, Dec 3, 2008 at 4:54 AM, Banibrata Dutta [EMAIL PROTECTED] wrote: Amazing concept, and glad that someone thought of this and implemented this. The book's formatting on IE and Chrome looked a bit unusual. Content wise it is already firly decent (i.e. enough to get a programmer started),

[ANN] Pyjamas 0.4: Python Web Toolkit Release

2008-12-02 Thread Luke Kenneth Casson Leighton
This is the 0.4 Release of Pyjamas, the python-to-javascript compiler and Web Widget set and framework. Download Pyjamas 0.4 here: https://sourceforge.net/project/showfiles.php?group_id=239074 http://code.google.com/p/pyjamas/downloads/list Pyjamas started as a port of Google's Web Toolkit, to

[ANN] Pyjamas 0.4: Python Web Toolkit Release

2008-12-02 Thread Luke Kenneth Casson Leighton
This is the 0.4 Release of Pyjamas, the python-to-javascript compiler and Web Widget set and framework. Download Pyjamas 0.4 here: https://sourceforge.net/project/showfiles.php?group_id=239074 http://code.google.com/p/pyjamas/downloads/list Pyjamas started as a port of Google's Web Toolkit, to

Re: [ANN] Pyjamas 0.4: Python Web Toolkit Release

2008-12-02 Thread Duncan Booth
Luke Kenneth Casson Leighton [EMAIL PROTECTED] wrote: Pyjamas started as a port of Google's Web Toolkit, to python. Explaining why Pyjamas (and GWT) is so significant takes some doing: the summary is that comprehensive desktop-like user interfaces can be developed very simply, to run in any

Re: Pyjamas 0.4: Python Web Toolkit Release

2008-12-02 Thread lkcl
On Dec 2, 6:52 pm, Duncan Booth [EMAIL PROTECTED] wrote: Luke Kenneth Casson Leighton [EMAIL PROTECTED] wrote: Pyjamasstarted as a port of Google's Web Toolkit, to python. Explaining whyPyjamas(and GWT) is so significant takes some doing: the summary is that comprehensive desktop-like

Re: [ANN] Pyjamas 0.4: Python Web Toolkit Release

2008-12-02 Thread Banibrata Dutta
Amazing concept, and glad that someone thought of this and implemented this. The book's formatting on IE and Chrome looked a bit unusual. Content wise it is already firly decent (i.e. enough to get a programmer started), but sometimes text appears in a long narrow col. format instead of the more

Re: Django or TurboGears or Pylons? for python web framework.

2008-11-17 Thread lkcl
On Wed, 05 Nov 2008 08:35:23 +0200, 3000 billg [EMAIL PROTECTED] Just from my preferences, I want to useDjangobut the AJAX support will be a problem. Also I need to select a JavaScriptframeworkand lean it, maybe JQuery, mootools or other. And I can not writepythonas it is written in

RE: Django or TurboGears or Pylons? for python web framework.

2008-11-07 Thread Sells, Fred
, 2008 5:54 AM To: 3000 billg; python-list@python.org Subject: Re: Django or TurboGears or Pylons? for python web framework. On Wed, 05 Nov 2008 08:35:23 +0200, 3000 billg [EMAIL PROTECTED] wrote: Hi Senior, Hi There was a case for web site that will be public to Internet for me. I

Re: Django or TurboGears or Pylons? for python web framework.

2008-11-07 Thread Daniel Fetchinson
Hi Senior, There was a case for web site that will be public to Internet for me. I like python so I do not consider the use of Ruby on Rails. I searched more web framework of python from Google. The good solution just only there are Django, TurboGears and Pylons. Just from my preferences,

Re: Django or TurboGears or Pylons? for python web framework.

2008-11-05 Thread Aspersieman
On Wed, 05 Nov 2008 08:35:23 +0200, 3000 billg [EMAIL PROTECTED] wrote: Hi Senior, Hi There was a case for web site that will be public to Internet for me. I like python so I do not consider the use of Ruby on Rails. Excellent choice :) I searched more web framework of python from

Django or TurboGears or Pylons? for python web framework.

2008-11-04 Thread 3000 billg
Hi Senior, There was a case for web site that will be public to Internet for me. I like python so I do not consider the use of Ruby on Rails. I searched more web framework of python from Google. The good solution just only there are Django, TurboGears and Pylons. Just from my preferences, I

Good python web programming books

2008-09-12 Thread bhaarat Sharma
Hi Guys, I am very new to python. I am looking for a good book about python web programming. I looked at a few online like Web Programming In Python but most are quite old. If you've read a good book on python web programming can you please suggest some? Thanks -- http://mail.python.org

Re: Good python web programming books

2008-09-12 Thread Chris Rebert
I've heard good things about The Django Book: http://www.djangobook.com/ - Chris On Fri, Sep 12, 2008 at 5:57 PM, bhaarat Sharma [EMAIL PROTECTED] wrote: Hi Guys, I am very new to python. I am looking for a good book about python web programming. I looked at a few online like Web

Re: Good python web programming books

2008-09-12 Thread bhaarat Sharma
, I am very new to python. I am looking for a good book about python web programming. I looked at a few online like Web Programming In Python but most are quite old. If you've read a good book on python web programming can you please suggest some? Thanks -- http

Re: Good python web programming books

2008-09-12 Thread Sean DiZazzo
web programming. I looked at a few online like Web Programming In Python but most are quite old. If you've read a good book on python web programming can you please suggest some? Thanks -- http://mail.python.org/mailman/listinfo/python-list -- Follow the path of the Iguana

Re: Python web framework choice

2008-08-13 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 few

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.

Python web framework choice

2008-08-12 Thread Mahdi
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 appreciated. thanks! --

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 appreciated.

Re: Keg - A python web framework

2008-08-08 Thread eghansah
Hi, Thank you for the comments so far. To be honest with you I didn't know about pycoon until Bukzor mentioned it. There appears to be some similarities between the two projects. However, I think I'd have to take a closer look at it to be sure that I'm not duplicating the efforts made in that

Re: Keg - A python web framework

2008-08-08 Thread Terry Reedy
eghansah wrote: As to the question on how different this is from other frameworks, I think there are certainly many similarities. As I admitted in the writeup, it draws from other projects including django. However, there is one new idea I haven't seen anywhere . . . not yet at least. In keg,

Re: Any tips on Python web development on Mac OS

2008-08-06 Thread Bruno Desthuilliers
Tim Greening-Jackson a écrit : Bruno Desthuilliers wrote: Tim Greening-Jackson a écrit : (snip) Depends on what your site is doing. There are all *sorts* of things I would like it to do, but am not dogmatic about any of them. For example, having various people being able to login to it

Any tips on Python web development on Mac OS

2008-08-05 Thread Tim Greening-Jackson
Hi there. I've recently learned Python -- but would by no means describe myself as expert -- and have a couple of pet projects I want to do in my spare time in order to consolidate what I've learned by using it to solve real problems. I'd like to create a couple of websites on my Mac at

Re: Keg - A python web framework

2008-08-05 Thread Ken Starks
Daniel Fetchinson wrote: I've been working on a python web framework which I think might be of interest to you. Details may be found at http://code.google.com/p/keg/wiki/Concept. All suggestions or comments will be greatly appreciated. I fail to see what the advantages of your framework

Re: Any tips on Python web development on Mac OS

2008-08-05 Thread Jeff
On Aug 5, 4:41 am, Tim Greening-Jackson zen167520_AT_zen_co_uk wrote: Hi there. I've recently learned Python -- but would by no means describe myself as expert -- and have a couple of pet projects I want to do in my spare time in order to consolidate what I've learned by using it to solve

Re: Any tips on Python web development on Mac OS

2008-08-05 Thread Bruno Desthuilliers
Tim Greening-Jackson a écrit : (snip) I'd like to create a couple of websites on my Mac at home. I have a very basic understanding of HTML, but am lazy and would prefer to do the work either in Python itself or have some package I can use in conjunction with Python. You're not going to get

Re: Any tips on Python web development on Mac OS

2008-08-05 Thread Tim Greening-Jackson
Bruno Desthuilliers wrote: Tim Greening-Jackson a écrit : (snip) You're not going to get anywhere without learning (x)html and css IMHO. Even using a graphical html editor like Dreamweaver requires having a good enough (IOW : being able to do it all by hand) knowledge of these languages.

Re: Keg - A python web framework

2008-08-04 Thread Daniel Fetchinson
I've been working on a python web framework which I think might be of interest to you. Details may be found at http://code.google.com/p/keg/wiki/Concept. All suggestions or comments will be greatly appreciated. I fail to see what the advantages of your framework are over django

Re: Keg - A python web framework

2008-08-04 Thread bukzor
On Aug 4, 1:13 pm, Daniel Fetchinson [EMAIL PROTECTED] wrote: I've been working on a python web framework which I think might be of interest to you. Details may be found athttp://code.google.com/p/keg/wiki/Concept. All suggestions or comments will be greatly appreciated. I fail to see

Re: Keg - A python web framework

2008-08-04 Thread Kay Schluehr
You can expect exactly 0 users and no appreciation for your efforts which will/can lead to frustration and bad health. Is it really so bad to have no users and not becoming a rock star programmer but rather being a poor poet programmer (PPP) instead? --

Keg - A python web framework

2008-08-03 Thread eghansah
Hi, I've been working on a python web framework which I think might be of interest to you. Details may be found at http://code.google.com/p/keg/wiki/Concept. All suggestions or comments will be greatly appreciated. Thank you. -- http://mail.python.org/mailman/listinfo/python-list

Re: Not necessarily related to python Web Crawlers

2008-07-06 Thread subeen
On Jul 5, 2:31 pm, [EMAIL PROTECTED] wrote: Hi Does anyone here have a good recommendation for an open source crawler that I could get my hands on? It doesn't have to be python based. I am interested in learning how crawling works. I think python based crawlers will ensure a high degree of

Not necessarily related to python Web Crawlers

2008-07-05 Thread disappearedng
Hi Does anyone here have a good recommendation for an open source crawler that I could get my hands on? It doesn't have to be python based. I am interested in learning how crawling works. I think python based crawlers will ensure a high degree of flexibility but at the same time I am also torn

Re: Not necessarily related to python Web Crawlers

2008-07-05 Thread defn noob
just crawling is supereasy. its how to index and search that is hard. just start at yahoo.com, scrape out all the links and then for every site visit every link. i wrote a crawler in 15 lines of code. but then it all it did was visit the sites, not indexing them or anything. you could write a

Python web development that resembles PHP or classic ASP

2008-05-25 Thread erik . oosterwaal
Hi All, I have been developing websites in classic asp using VB script for a long while now. Due to the fact that I also took a detour to developing ColdFusion, and the fact the companies I work(ed) for never had time or money for courses, I am now in the awkward position that I am -still-

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,

Re: PHP Developer highly interested in Python (web development) with some open questions...

2008-02-26 Thread CE
about the encryption: is ur product more valuable than the linux kernel? -- http://mail.python.org/mailman/listinfo/python-list

Re: PHP Developer highly interested in Python (web development) with some open questions...

2008-02-25 Thread Bruno Desthuilliers
Diez B. Roggisch a écrit : It's also some kind of a Rube Goldberg thingie... http://en.wikipedia.org/wiki/Rube_Goldberg_machine If you're into web applications, better to have a look at Pylons or Django IMHO. You are entitled to your opinion, but calling Zope a Rube-Goldberg-machine is

Re: PHP Developer highly interested in Python (web development) with some open questions...

2008-02-25 Thread Gabriel Genellina
En Mon, 25 Feb 2008 06:42:39 -0200, Bruno Desthuilliers [EMAIL PROTECTED] escribió: Diez B. Roggisch a écrit : It's also some kind of a Rube Goldberg thingie... http://en.wikipedia.org/wiki/Rube_Goldberg_machine If you're into web applications, better to have a look at Pylons or Django

Re: PHP Developer highly interested in Python (web development) with some open questions...

2008-02-24 Thread MartinRinehart
re encryption I ran a small software company in the '80s. We did the unthinkable: shipped our software with a money-back guarantee. Anyone could buy the software, copy it and then request a full refund. Return rate: 0.5%. Of the returns we guessed that about half of them were for perfectly legit

Re: PHP Developer highly interested in Python (web development) with some open questions...

2008-02-24 Thread Christian Heimes
Tamer Higazi wrote: - What is the Zope Applikation Server? Is it also a Webserver like the Apache or Tomcat Webserver? Zope is much more than a webserver. It's a web application server including a fast object database (ACID, support clustering and MVCC), a powerful plugin architecture, builtin

Re: PHP Developer highly interested in Python (web development) with some open questions...

2008-02-24 Thread Tamer Higazi
Am Sonntag, den 24.02.2008, 13:44 +0100 schrieb Christian Heimes: Plone and Archetypes (based on Zope) have a tool named ArchGenXML. It takes UML XMI files and generates content types, workflows and products for the Plone CMS. I don't want workflows, I want the classes and methods

Re: PHP Developer highly interested in Python (web development) with some open questions...

2008-02-24 Thread Paul Boddie
On 24 Feb, 14:33, Tamer Higazi [EMAIL PROTECTED] wrote: Not true! you can disassemble the app and then have fun reading, not that easy. I simply want that nobody reads the sourcecode or better said the content of the python files I would have generated. Some quick answers:

Re: PHP Developer highly interested in Python (web development) with some open questions...

2008-02-24 Thread [EMAIL PROTECTED]
On 24 fév, 13:44, Christian Heimes [EMAIL PROTECTED] wrote: Tamer Higazi wrote: - What is the Zope Applikation Server? Is it also a Webserver like the Apache or Tomcat Webserver? Zope is much more than a webserver. It's a web application server including a fast object database (ACID,

Re: PHP Developer highly interested in Python (web development) with some open questions...

2008-02-24 Thread Diez B. Roggisch
It's also some kind of a Rube Goldberg thingie... http://en.wikipedia.org/wiki/Rube_Goldberg_machine If you're into web applications, better to have a look at Pylons or Django IMHO. You are entitled to your opinion, but calling Zope a Rube-Goldberg-machine is strong. To put it mildly.

PHP Developer highly interested in Python (web development) with some open questions...

2008-02-23 Thread Tamer Higazi
Hi! My brother is dreaming and dying for python and swear that it is the ultimate killer application language. I am coding Webapplication in PHP5 and ask myself if for python are: - application frameworks like: Zend Framework and ezComponents - What is the Zope Applikation Server? Is it also a

PHP Developer highly interested in Python (web development) with some open questions...

2008-02-23 Thread Tamer Higazi
Hi! My brother is dreaming and dying for python and swear that it is the ultimate killer application language. I am coding Webapplication in PHP5 and ask myself if for python are: - application frameworks like: Zend Framework and ezComponents - What is the Zope Applikation Server? Is it also a

Re: PHP Developer highly interested in Python (web development) with some open questions...

2008-02-23 Thread Steve Holden
Tamer Higazi wrote: Hi! My brother is dreaming and dying for python and swear that it is the ultimate killer application language. I am coding Webapplication in PHP5 and ask myself if for python are: - application frameworks like: Zend Framework and ezComponents - What is the Zope

Re: What is the most simple, quicket, yet most powerful python Web-Framework?

2008-02-06 Thread Bruno Desthuilliers
xkenneth a écrit : All, I'm trying to build a simple web application, but i still need things like sessions and Ajax. I tried to create a Zope product, but I honestly can't think of anything more cryptic. Indeed !-) I really don't enjoy learning all of the magic code and debugging

What is the most simple, quicket, yet most powerful python Web-Framework?

2008-02-05 Thread xkenneth
All, I'm trying to build a simple web application, but i still need things like sessions and Ajax. I tried to create a Zope product, but I honestly can't think of anything more cryptic. I really don't enjoy learning all of the magic code and debugging an environment I have to study to know

Re: What is the most simple, quicket, yet most powerful python Web-Framework?

2008-02-05 Thread Steve Holden
xkenneth wrote: All, I'm trying to build a simple web application, but i still need things like sessions and Ajax. I tried to create a Zope product, but I honestly can't think of anything more cryptic. I really don't enjoy learning all of the magic code and debugging an environment I

Re: What is the most simple, quicket, yet most powerful python Web-Framework?

2008-02-05 Thread George Sakkis
xkenneth wrote: For the DB backend I'm planning on using ZODB. ZODB is actually quite amazing, and after using it, I honestly can't think of a reason for using a SQL database. Well, one reason is that this probably rules out most of your options since most web frameworks include (or integrate

Re: What is the most simple, quicket, yet most powerful python Web-Framework?

2008-02-05 Thread [EMAIL PROTECTED]
On Feb 5, 10:04 pm, xkenneth [EMAIL PROTECTED] wrote: All, I'm trying to build a simple web application, but i still need things like sessions and Ajax. I tried to create a Zope product, but I honestly can't think of anything more cryptic. I really don't enjoy learning all of the magic

Re: What is the most simple, quicket, yet most powerful python Web-Framework?

2008-02-05 Thread xkenneth
My question is: What makes you think that there is a royal road to web development? I don't, I was just hoping there was something I was missing, or more simple than anything I'd experienced. You have already chosen some technology (Ajax and ZODB) without any apparent justification. I've

Re: What is the most simple, quicket, yet most powerful python Web-Framework?

2008-02-05 Thread xkenneth
On Feb 5, 9:33 pm, xkenneth [EMAIL PROTECTED] wrote: My question is: What makes you think that there is a royal road to web development? I don't, I was just hoping there was something I was missing, or more simple than anything I'd experienced. You have already chosen some technology

Re: What is the most simple, quicket, yet most powerful python Web-Framework?

2008-02-05 Thread Steve Holden
xkenneth wrote: My question is: What makes you think that there is a royal road to web development? I don't, I was just hoping there was something I was missing, or more simple than anything I'd experienced. You have already chosen some technology (Ajax and ZODB) without any apparent

Re: Trying to understand Python web-development

2008-01-30 Thread Paul Boddie
. For development, you are supposed to run a local browser and load 127.0.0.1:5000 - or something like that. Then to run the same thing in a development environment, I have to configure some files, or touch all the files, restart the web-server, or something. Why is that? You can deploy Python Web

Re: Trying to understand Python web-development

2008-01-30 Thread walterbyrd
Thanks for all that posts. This thread has been helpful. I have seen a lot of posts about the importance of decoupling the deployment technologies from the framework technologies. This is how I have done that in PHP. I develop on my home box. When I get something working the way I want, I ftp

Re: Trying to understand Python web-development

2008-01-30 Thread Paul Boddie
of choices. In short, flexibility is definitely here for Python Web frameworks. I'd agree that PHP is usually configured to be as easy to deploy as possible, but I guess that's because the (admittedly straightforward) configuration is typically already done for users of shared hosting. I've just got

Re: Trying to understand Python web-development

2008-01-29 Thread Joe Riopel
On Jan 29, 2008 12:11 PM, walterbyrd [EMAIL PROTECTED] wrote: I am not really sure about what wsgi is supposed to accomplish. This will explain WSGI: http://www.python.org/dev/peps/pep-0333/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Trying to understand Python web-development

2008-01-29 Thread Bruno Desthuilliers
walterbyrd a écrit : I don't know much php either, but running a php app seems straight forward enough. Mmm... As long as the whole system is already installed and connfigured, *and* matches your app's expectations, kind of, yes. Python seems to always use some sort of development

Trying to understand Python web-development

2008-01-29 Thread walterbyrd
I don't know much php either, but running a php app seems straight forward enough. Python seems to always use some sort of development environment vs production environment scheme. For development, you are supposed to run a local browser and load 127.0.0.1:5000 - or something like that. Then to

Re: Trying to understand Python web-development

2008-01-29 Thread Joshua Kugler
walterbyrd wrote: Python also seems to require some sort of long running processes I guess that the python interpretor has to running all of time. What you probably don't realize, is that in 99.9% of the situations you've come across, PHP is already a process running all the time. It's called

Python web aps - A matter of security

2008-01-05 Thread lloyd
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 project directory. The path to that directory is in a *.pth file in

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 project

Re: standalone python web server

2007-12-27 Thread Panos Laganakos
On Dec 27, 7:41 am, eric [EMAIL PROTECTED] wrote: Hi all, I want to setup simple python web server and I want it to just unzip and run, without any installation steps (have no right to do it). I've tried to write by myself, however, I find I am getting into more details like processing

Re: standalone python web server

2007-12-27 Thread Bjoern Schliessmann
eric wrote: I want to setup simple python web server and I want it to just unzip and run, without any installation steps (have no right to do it). Which OS? You might run into authorisation problems if you want it to listen on port 80 TCP. Regards, Björn -- BOFH excuse #303: fractal

Re: standalone python web server

2007-12-27 Thread Jarek Zgoda
eric napisał(a): I want to setup simple python web server and I want it to just unzip and run, without any installation steps (have no right to do it). Look at SimpleHTTPServer in standard library. I've tried to write by myself, however, I find I am getting into more details like processing

Re: standalone python web server

2007-12-27 Thread eric
On Dec 27, 6:22 pm, Bjoern Schliessmann usenet- [EMAIL PROTECTED] wrote: eric wrote: I want to setup simple python web server and I want it to just unzip and run, without any installation steps (have no right to do it). Which OS? You might run into authorisation problems if you want

Re: standalone python web server

2007-12-27 Thread eric
On Dec 27, 4:52 pm, Panos Laganakos [EMAIL PROTECTED] wrote: On Dec 27, 7:41 am, eric [EMAIL PROTECTED] wrote: Hi all, I want to setup simple python web server and I want it to just unzip and run, without any installation steps (have no right to do it). I've tried to write by myself

Re: standalone python web server

2007-12-27 Thread Tim Chase
Actually, I've considered to use django, however it required to run command (which I don't have right to do it) python setup.py install Btw, is it possible to use without running setup.py ? Yes, it's quite possible...Django is pure Python, so you just have to have its directory in your

Re: standalone python web server

2007-12-27 Thread Markus Gritsch
On 27/12/2007, eric [EMAIL PROTECTED] wrote: Hi all, I want to setup simple python web server and I want it to just unzip and run, without any installation steps (have no right to do it). I've tried to write by myself, however, I find I am getting into more details like processing image

Re: standalone python web server

2007-12-27 Thread Diez B. Roggisch
eric schrieb: On Dec 27, 4:52 pm, Panos Laganakos [EMAIL PROTECTED] wrote: On Dec 27, 7:41 am, eric [EMAIL PROTECTED] wrote: Hi all, I want to setup simple python web server and I want it to just unzip and run, without any installation steps (have no right to do it). I've tried to write

Re: standalone python web server

2007-12-27 Thread Jason Earl
eric [EMAIL PROTECTED] writes: Hi all, I want to setup simple python web server and I want it to just unzip and run, without any installation steps (have no right to do it). I've tried to write by myself, however, I find I am getting into more details like processing image file, different

Re: standalone python web server

2007-12-26 Thread rishi pathak
See if this helps www.*django*project.com On 12/27/07, eric [EMAIL PROTECTED] wrote: Hi all, I want to setup simple python web server and I want it to just unzip and run, without any installation steps (have no right to do it). I've tried to write by myself, however, I find I am getting

standalone python web server

2007-12-26 Thread eric
Hi all, I want to setup simple python web server and I want it to just unzip and run, without any installation steps (have no right to do it). I've tried to write by myself, however, I find I am getting into more details like processing image file, different file type(like FLV) .. etc. Any

python web server questions

2007-12-17 Thread dalebryan1
I am working on a task to display a wireless network nodes using Google Earth (GE) with KML network links. I am using a simple python webserver (see code below) to serve up the python scripts as KML output to GE for this. import BaseHTTPServer import CGIHTTPServer class

Re: Yet another comparison of Python Web Frameworks

2007-12-15 Thread Benoit
Gluon was made at my school? I seriously gotta start talking to the CTI department. -- http://mail.python.org/mailman/listinfo/python-list

Re: My very first python web app (no framework)

2007-12-10 Thread A.T.Hofkamp
On 2007-12-10, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: On 9 Dic, 15:43, [EMAIL PROTECTED] wrote: Is it the right way to go? Is it safe in a web production environment ? Is it thread-friendly (since flup is threaded) ? tnx Any hint ? If you as author are asking, my bet is on no for

Re: My very first python web app (no framework)

2007-12-10 Thread scardig
On 9 Dic, 15:43, [EMAIL PROTECTED] wrote: This is my first Python web pseudo-app: you give me some data, I give you func(data). I'm on a shared host with mod_fastcgi so I installed a virtual python environment + flup (no middleware now, just wsgi server). = dispatch.fcgi

[newbie] My very first python web app (no framework)

2007-12-09 Thread scardig
This is my first Python web pseudo-app: you give me some data, I give you func(data). I'm on a shared host with mod_fastcgi so I installed a virtual python environment + flup (no middleware now, just wsgi server). = dispatch.fcgi = from fcgi import WSGIServer import sys

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 and

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 java applets came

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,

<    1   2   3   4   5   6   7   >