473,406 Members | 2,956 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,406 software developers and data experts.

what is best for web development??

i am developing a web application and i am really confused on what should i use.
should i use just python and use the cgi module availabe.
Or should i use application like WebWare.Also there is PSP available.
I am really confused and need help
Jul 18 '05 #1
14 2526
ke***********@yahoo.com writes:
i am developing a web application and i am really confused on what should i use.
should i use just python and use the cgi module availabe.
Or should i use application like WebWare.Also there is PSP available.
I am really confused and need help


It depends of the kind of application you want to do exactly, there are
many possibilities from cgi to zope...

Look into the archive of the list, you'll find a lot of answer to this
question. Or describe more what you need.

bye

--
Wilk - http://flibuste.net
Jul 18 '05 #2

ketulp> i am developing a web application and i am really confused on
ketulp> what should i use. should i use just python and use the cgi
ketulp> module availabe. Or should i use application like WebWare.Also
ketulp> there is PSP available. I am really confused and need help

As Wilk indicated, there are lots of options and you didn't say
much/anything about your environment or requirements for your web app. If
all your developers are mostly Python programmers, I think you might like
Quixote. If you have a diverse group of people with different skills
(programmers, web designers, marketing types), you might find Zope more to
your liking. There are tons of other options as well. It all depends...

Skip
Jul 18 '05 #3
I've was faced to the same problem few months ago. After checked lot
of different solutions, I've select Draco (draco.boskant.nl).

A framework around mod_python that offers lot of flexibility and can
be used for havy loaded web site.

One of the nicest feature is the possibility to split code and HTML.

I'm not objective, but I propose you to make your own choice amongst
all the good solutions (karrigel, albatros are very good too), but
have a look at draco.


ke***********@yahoo.com wrote in message news:<f0**************************@posting.google. com>...
i am developing a web application and i am really confused on what should i use.
should i use just python and use the cgi module availabe.
Or should i use application like WebWare.Also there is PSP available.
I am really confused and need help

Jul 18 '05 #4
|Thus Spake ketulp_barod On the now historical date of Sat, 10 Jan 2004
03:58:09 -0800|
i am developing a web application and i am really confused on what
should i use. should i use just python and use the cgi module availabe.
Or should i use application like WebWare.Also there is PSP available. I
am really confused and need help


Follow the advice given elsewhere in this thread, but also look at PHP,
which is another web-programming language. It's not difficult to pick up
if you have a grounding in C, and understand HTML, but it does have its
issues. It is best for getting web pages to talk to databases. The
nicest thing about it is that it was developed *for* creating dynamic
web-pages, so it has a good tool-box for that sort of thing.

HTH

Sam Walters.

--
Never forget the halloween documents.
http://www.opensource.org/halloween/
""" Where will Microsoft try to drag you today?
Do you really want to go there?"""

Jul 18 '05 #5
Wilk <wi******@OUTflibuste.net> wrote in message news:<87************@blakie.riol>...
ke***********@yahoo.com writes:
i am developing a web application and i am really confused on what should i use.
should i use just python and use the cgi module availabe.
Or should i use application like WebWare.Also there is PSP available.
I am really confused and need help


It depends of the kind of application you want to do exactly, there are
many possibilities from cgi to zope...

Look into the archive of the list, you'll find a lot of answer to this
question. Or describe more what you need.

bye

hey thanks for ur reply
i am developing an issue tracking system
the primary requirements are
1)it should be platform independent which i think python will take
care of
2)it should have customizable gui .I am thinking of using templates
for this like Cheetah. Is there any other better solution to Cheetah?
The problem i am facing here is i dont know what to use for
development of the application. I came across many ways to develop web
application in python which I already specified like
i)the cgi module in python
ii)Python Server Pages
iii)Quixote
iv)WebWare
v)Zope etc.
I want to choose such an environment so that i dont have to install
other softwares to run my application.For eg. I think if I develop
using zope then the client also has to install zope to run my software
and i dont want this.
Jul 18 '05 #6
ke***********@yahoo.com writes:
Wilk <wi******@OUTflibuste.net> wrote in message news:<87************@blakie.riol>...
ke***********@yahoo.com writes:
> i am developing a web application and i am really confused on what should i use.
> should i use just python and use the cgi module availabe.
> Or should i use application like WebWare.Also there is PSP available.
> I am really confused and need help
It depends of the kind of application you want to do exactly, there are
many possibilities from cgi to zope...

Look into the archive of the list, you'll find a lot of answer to this
question. Or describe more what you need.

bye

hey thanks for ur reply
i am developing an issue tracking system


There is one that you can look at : http://roundup.sf.net
I think it can be used in standalone server or cgi.
the primary requirements are
1)it should be platform independent which i think python will take
care of
2)it should have customizable gui .I am thinking of using templates
for this like Cheetah. Is there any other better solution to Cheetah?
There is no better solution than Cheetah : there is others solutions...
The problem i am facing here is i dont know what to use for
development of the application. I came across many ways to develop web
application in python which I already specified like
i)the cgi module in python
ii)Python Server Pages
iii)Quixote
iv)WebWare
v)Zope etc.
I want to choose such an environment so that i dont have to install
other softwares to run my application.For eg. I think if I develop
using zope then the client also has to install zope to run my software
and i dont want this.


When you use one of theses servers, you don't need to install anything
else than a classic browser on the client side.
On the server side, most of the servers will not need anything else, you
can even start without server with the batterie include :
BasicHTTPServer (it was somes examples on this list somes days ago).

bye

--
Wilk - http://flibuste.net
Jul 18 '05 #7
Wilk <wi******@OUTflibuste.net> wrote in message news:<87************@blakie.riol>...
ke***********@yahoo.com writes:
The problem i am facing here is i dont know what to use for
development of the application. I came across many ways to develop web
application in python which I already specified like
i)the cgi module in python
ii)Python Server Pages
iii)Quixote
iv)WebWare
v)Zope etc.
I want to choose such an environment so that i dont have to install
other softwares to run my application.For eg. I think if I develop
using zope then the client also has to install zope to run my software
and i dont want this.


When you use one of theses servers, you don't need to install anything
else than a classic browser on the client side.
On the server side, most of the servers will not need anything else, you
can even start without server with the batterie include :
BasicHTTPServer (it was somes examples on this list somes days ago).


Just a guess, but I suspect the OP is using the term "client" in the
business sense, not the client/server sense; that is, he's trying to
write a Web application that is easy to deploy on his clients'
(customers') servers.

If it has to be a one-shot install, I would suggest a Web server
written in Python -- Medusa or Twisted, probably -- that you could
bundle with your Python app. Find a Web app framework that (a) works
on Medusa or Twisted and (b) has the templating features you
require/desire.

I wouldn't jump at using Twisted's app framework (Woven?) on top of
Twisted's Web server, though. No disrespect intended to the Twisted
community or their great body of work; it's just that server and
app-framework are two separate concerns: one day you might want to or
need to switch Web servers, and you need to know that your framework
is portable. I'm no Twisted expert: perhaps Woven is indeed portable,
and a kindly Twisted person will elaborate here.

-- Graham
Jul 18 '05 #8
hi
the application should work with Apache or IIS web server.
Jul 18 '05 #9
gr*************@hotmail.com (Graham Fawcett) wrote in message news:<e9*************************@posting.google.c om>...
Wilk <wi******@OUTflibuste.net> wrote in message news:<87oet9grqy.fsf@blakie. If it has to be a one-shot install, I would suggest a Web server
written in Python -- Medusa or Twisted, probably -- that you could
bundle with your Python app. Find a Web app framework that (a) works
on Medusa or Twisted and (b) has the templating features you
require/desire.


I would not recommend this. A distribution with an own apache server
seems to be the best. It is easy to hide the setup and the customers
know that there is a good working technologie behind the scenes. And
it can be managed by every normal administrator. This is a very
important point for larger customers.

I would recommend webware+Fun Form Kit+cheeta together with apache.
Jul 18 '05 #10
In article <6e**************************@posting.google.com >,
Lothar Scholz <ll*****@web.de> wrote:
gr*************@hotmail.com (Graham Fawcett) wrote in message
news:<e9*************************@posting.google. com>...
Wilk <wi******@OUTflibuste.net> wrote in message news:<87oet9grqy.fsf@blakie.

If it has to be a one-shot install, I would suggest a Web server
written in Python -- Medusa or Twisted, probably -- that you could
bundle with your Python app. Find a Web app framework that (a) works
on Medusa or Twisted and (b) has the templating features you
require/desire.


I would not recommend this. A distribution with an own apache server
seems to be the best. It is easy to hide the setup and the customers
know that there is a good working technologie behind the scenes. And
it can be managed by every normal administrator. This is a very
important point for larger customers.

I would recommend webware+Fun Form Kit+cheeta together with apache.


I'm unsure what you're recommending. We're considering a self-contained
Web application, including the Web server itself. Are you proposing:
1. An installer which does a conventional Apache
installation, except with enough stuff confi-
gured so it comes up in a safe state, PLUS
a separate installation segment just for the
Python-based part; or
2. A custom installer which knows internal details
of both Apache and the Python-based application?

What advantage do you see for either of these over the pure-Python ap-
proach suggested above? Is your point that customers feel more
comfortable with "Apache inside"?
--

Cameron Laird <cl****@phaseit.net>
Business: http://www.Phaseit.net
Jul 18 '05 #11
ll*****@web.de (Lothar Scholz) wrote in message news:<6e**************************@posting.google. com>...
gr*************@hotmail.com (Graham Fawcett) wrote in message news:<e9*************************@posting.google.c om>...
Wilk <wi******@OUTflibuste.net> wrote in message news:<87oet9grqy.fsf@blakie.

If it has to be a one-shot install, I would suggest a Web server
written in Python -- Medusa or Twisted, probably -- that you could
bundle with your Python app. Find a Web app framework that (a) works
on Medusa or Twisted and (b) has the templating features you
require/desire.


I would not recommend this. A distribution with an own apache server
seems to be the best. It is easy to hide the setup and the customers
know that there is a good working technologie behind the scenes. And
it can be managed by every normal administrator. This is a very
important point for larger customers.


Therefore, you are suggesting ASP running on IIS? Or JSP + SunONE +
Oracle? <0.5 wink> Few Python solutions would satisfy the customer who
bears this level of concern.

There are countless potential customers for Intranet applications who
will never be able to install Apache. Many of them will never meet a
"normal administrator" -- by which I assume you mean the "FOSS-savvy,
got Knoppix right here on my keydrive" variety, not the
MS/Lotus/Netware kind -- let alone employ one. They still deserve and
will pay for Intranet apps, and the company that can deliver and
deploy them easily will have a business advantage.

(I will never forget the first time I delivered such an app to a
client, and told him "just run the setup program", and he had a fully
functional Web app -- Web server, database and all -- running 40
seconds later. Nor will I forget the funny sound his jaw made as it
hit the floor.)

Lastly, almost any app that will run on a Python web server will also
run on Apache et. al., right? Unless you design it with Apache-centric
features; but I don't know if your concerned customer would appreciate
unnecessary platform lock-in! Offer both a Quick-Start and an FCGI
flavour of your app, and let the customer decide what he's capable of
administering.

In my book, an application that scales down (embedded httpd) as well
as up (Apache, etc.) beats a scaled-up-and-nowhere-to-go app any day.

Best wishes,

-- G
Jul 18 '05 #12
We're not considering a self-contained Web application, including the
Web server itself. The Web server could be any Apache , IIS or the
python ones. It depends on the customer.

cl****@lairds.com (Cameron Laird) wrote in message news:<10*************@corp.supernews.com>...
In article <6e**************************@posting.google.com >,
Lothar Scholz <ll*****@web.de> wrote:
gr*************@hotmail.com (Graham Fawcett) wrote in message
news:<e9*************************@posting.google. com>...
Wilk <wi******@OUTflibuste.net> wrote in message news:<87oet9grqy.fsf@blakie. If it has to be a one-shot install, I would suggest a Web server
written in Python -- Medusa or Twisted, probably -- that you could
bundle with your Python app. Find a Web app framework that (a) works
on Medusa or Twisted and (b) has the templating features you
require/desire.


I would not recommend this. A distribution with an own apache server
seems to be the best. It is easy to hide the setup and the customers
know that there is a good working technologie behind the scenes. And
it can be managed by every normal administrator. This is a very
important point for larger customers.

I would recommend webware+Fun Form Kit+cheeta together with apache.


I'm unsure what you're recommending. We're considering a self-contained
Web application, including the Web server itself. Are you proposing:
1. An installer which does a conventional Apache
installation, except with enough stuff confi-
gured so it comes up in a safe state, PLUS
a separate installation segment just for the
Python-based part; or
2. A custom installer which knows internal details
of both Apache and the Python-based application?

What advantage do you see for either of these over the pure-Python ap-
proach suggested above? Is your point that customers feel more
comfortable with "Apache inside"?

Jul 18 '05 #13
cl****@lairds.com (Cameron Laird) wrote in message news:<10*************@corp.supernews.com>...

I'm unsure what you're recommending. We're considering a self-contained
Web application, including the Web server itself. Are you proposing:
1. An installer which does a conventional Apache
installation, except with enough stuff confi-
gured so it comes up in a safe state, PLUS
a separate installation segment just for the
Python-based part; or
2. A custom installer which knows internal details
of both Apache and the Python-based application?

What advantage do you see for either of these over the pure-Python ap-
proach suggested above? Is your point that customers feel more
comfortable with "Apache inside"?


I would use (2), simply because (1) could have influences with an
existing installation. I hate the window programs who install
apache/php and kill my machine (like Numegas PHPEd or Magumas older
version). Such an installation should never use the standart paths,
ports or anything else.

And yes "Apache inside" is a very good marketing argument. Apache has
proven to be robust to most of the denial of service attacks and if
there is a good administrator in the company he can update it easily
with security patches.

I found that companies that are sensitive to security issues try to
avoid home grown server as much as possible.
Jul 18 '05 #14
aj
hi
i am a newbi to python and developing a web application
what do u all think is the best application framework for developing
web application in python. I want a framework that supports
templates,database connectivity, is available for both unix and
windows.
Zope
Quixote
Draco or others
I read some stuff about all these frameworks and i think zope is a good one
But wanna know what you all think
Wilk <wi******@OUTflibuste.net> wrote in message news:<87************@blakie.riol>...
ke***********@yahoo.com writes:
Wilk <wi******@OUTflibuste.net> wrote in message news:<87************@blakie.riol>...
ke***********@yahoo.com writes:

> i am developing a web application and i am really confused on what should i use.
> should i use just python and use the cgi module availabe.
> Or should i use application like WebWare.Also there is PSP available.
> I am really confused and need help

It depends of the kind of application you want to do exactly, there are
many possibilities from cgi to zope...

Look into the archive of the list, you'll find a lot of answer to this
question. Or describe more what you need.

bye

hey thanks for ur reply
i am developing an issue tracking system


There is one that you can look at : http://roundup.sf.net
I think it can be used in standalone server or cgi.
the primary requirements are
1)it should be platform independent which i think python will take
care of
2)it should have customizable gui .I am thinking of using templates
for this like Cheetah. Is there any other better solution to Cheetah?


There is no better solution than Cheetah : there is others solutions...
The problem i am facing here is i dont know what to use for
development of the application. I came across many ways to develop web
application in python which I already specified like
i)the cgi module in python
ii)Python Server Pages
iii)Quixote
iv)WebWare
v)Zope etc.
I want to choose such an environment so that i dont have to install
other softwares to run my application.For eg. I think if I develop
using zope then the client also has to install zope to run my software
and i dont want this.


When you use one of theses servers, you don't need to install anything
else than a classic browser on the client side.
On the server side, most of the servers will not need anything else, you
can even start without server with the batterie include :
BasicHTTPServer (it was somes examples on this list somes days ago).

bye

Jul 18 '05 #15

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

23
by: darwinist | last post by:
What PHP Represents There is no shortage of complaints one could make about php as a language, and although the list does shrink with each release, some of them are inherent to the origins and...
92
by: Reed L. O'Brien | last post by:
I see rotor was removed for 2.4 and the docs say use an AES module provided separately... Is there a standard module that works alike or an AES module that works alike but with better encryption?...
125
by: Sarah Tanembaum | last post by:
Beside its an opensource and supported by community, what's the fundamental differences between PostgreSQL and those high-price commercial database (and some are bloated such as Oracle) from...
8
by: Hermawih | last post by:
Hello , I want your opinion about this . In order to say it clearly , I think I have to describe it in long sentences . I could consider myself as Intermediate/Advance Access Developer ;...
6
by: Mark Broadbent | last post by:
this might sound like an obvious question but I have found that usually these two evolve at the same time. One of the biggest reasons for creating the abstraction in the first place (in my...
8
by: Midnight Java Junkie | last post by:
Dear Colleagues: I feel that the dumbest questions are those that are never asked. I have been given the opportunity to get into .NET. Our organization has a subscription with Microsoft that...
6
by: jhooper71 | last post by:
It's been recommended to me to use a webservice and XML for the data manipulation layer for web applications in .NET 1.1. I was thinking I could use the web service to extend the database...
12
by: johannblake | last post by:
First off, I am NOT a beginner. I have lots of experience developing professional web sites and am a professional software developer. Unfortunately I've been out of web site development for the...
35
by: Friendly_Lola | last post by:
What Screen Resolution do You use? 800 X 600 1024 X 768 1280 X 1024 Wow! 1600 X 1200 (i can't imagine this) I use 1024 X 768. For what resolution you optimize your web pages?
184
by: jim | last post by:
In a thread about wrapping .Net applications using Thinstall and Xenocode, it was pointed out that there may be better programming languages/IDEs to use for the purpose of creating standalone,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.