Re: Building Python Based Web Application



The most modest way is to use pure Python and interface via CGI with
the web. I would start there.

As you code you will find yourself saying "I wonder if a framework is
out there that already has automated this specific process (say
templating)?", well then you can search and find such a framework.

If you pick a framework you are not familiar with right from the start
then besides your original problem that you want o solve, you have
another problem -- that of learning a new framework. You will end up
molding your problem to some framework (this is not necessarily a very
bad thing) rather than finding a framework that helps you solve the
problem.

--Nick V.


John Henry wrote:
Hi folks.

I am interested on this topic as well.

If my application is not database related, what would be a good choice?

I have clients that wish to use my Python applications but I am not
willing to give them the code. So, I am thinking about setting it up
as a web based application and let them run it from their browser. If
things go well, may be I can charge them for usage later.

The application will involve getting a data file from the user, do some
processing, and return a result file to the user. Very modest - to
start.

.



Relevant Pages

  • Re: ANN: pythonfs - create linux filesystems in python
    ... >>a framework which allows mountable linux filesystems to be ... >>implemented in pure python. ... Or how about a cvs backend to the file system? ...
    (comp.lang.python)
  • Re: ANN: pythonfs - create linux filesystems in python
    ... >a framework which allows mountable linux filesystems to be ... >implemented in pure python. ... René Pijlman ...
    (comp.lang.python)
  • Re: Yet Another Python Web Programming Question
    ... > Python using CGI, for example, was enough for him until he started ... But you* sound like you don't want a framework to take over the ... interface available as standard in the future. ...
    (comp.lang.python)
  • Re: web development without using frameworks
    ... I'd say the only decent ways are either using a full-featured framework ... (I favor Pylons) ... write plain-old CGIs with Python's "cgi" module. ... unless your goal is to learn the "low-level" parts of web programming ...
    (comp.lang.python)
  • Re: Pimping the cgi module
    ... part of the standard library in finite time. ... At a first look it seems horrible if you just want to provide a CGI ... basis has to be good, ... And - yes - adding another framework will surely not help us out of the ...
    (comp.lang.python)