473,398 Members | 2,343 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,398 software developers and data experts.

Python on WWW - beginners question: what to choose?

Hello,

I'm currently starting with Python as a language for writing websites. I
must say that I'm overwhelmed by the number of choices I have (mod_python
with publisher, Vampire, mps, Spyce), cgi, fcgi, Webware, Zope,
Plone, ...).

Isn't there any article in style "this suite use this style of programming
and is good for this type of applications"?

I've tried mod_python.publisher and Spyce so far (and looked on few others,
as mps, Vampire and Cheerypy). I'm currently giving Spyce the biggest
chance...however, I'm not very satisfied with "in-line" coding (PSP-style)
as I do not want to program this way and I think it must have some
performance impact...but session.auto, request and response modules are big
help.
I'm satisfied with concept of mps, however It's fine that author hate
writing HTML, but I want to; or better, I want to use Cheetah Templates - i
think they are better for bigger sites (then homepage) as the one I want to
write.

Well...what exactly I'm looking for?

1) No module importing problem. In ideal case, specify directory, so I can
just import my_module, my_another_module...but that has to be "sandboxed"
for each apache virtual host. I would like to avoid interference between
sites I'm hosting.

2) Pooling. I want to have "pool" for data, which are shared between
sites/request, f. e. database connection. However, for some sites I would
like to have "kernel" module, which will be loaded in RAM, so sites must
not grab data from database (f. e. number of users online). However, this
could be solved by running system daemon on server...but it's not the ideal
solution, IMHO.

3) I'm not looking for framework so much complex as Zope or Plone is. My
site is specific with some original ideas, which are not reusable on other
sites, so I want to write it "from scratch". Additionally, I like to knew
code of the sites on web - f. e. using Cheetah don't bother me (it's not
directly on web), but using Phorum or phpBB yes.

I'm not interested in calling of pages (page.py/function or page.py?args), I
will use mod_rewrite anyway.

Is there anything what will satisfy my requirements, or I must write it? :)
Or I'm looking on this problem from bad shape and re-inventing wheel?

Thanks for advises (and sorry for long post for those who don't like it),

--
Lukas "Almad" Linhart
[:: http://www.almad.net/ ::]
[:: PGP/GNUPg key: http://www.almad.net/download/pubkey.asc ::]
Jul 18 '05 #1
5 1747

"Almad" <wr*****@almad.net> wrote in message
news:cu***********@news.vol.cz...
Hello,

I'm currently starting with Python as a language for writing websites. I
must say that I'm overwhelmed by the number of choices I have (mod_python
with publisher, Vampire, mps, Spyce), cgi, fcgi, Webware, Zope,
Plone, ...).

Isn't there any article in style "this suite use this style of programming
and is good for this type of applications"?


Have you looked at these links?
http://www.python.org/pycon/papers/framework/web.html
http://pyre.third-bit.com/pyweb/index.html
You may find also this interesting as a list to several links related to
this topic:
http://www.python.org/moin/WebProgramming

Dan
Jul 18 '05 #2
Spyce has support for Cheetah Templates:
http://spyce.sourceforge.net/doc-mod_template.html
as well as pooling:
http://spyce.sourceforge.net/doc-mod_pool.html

Spyce templates are converted into python before execution, and you can
enable caching in the Spyce configuration file. Spyce also comes with
a script that will let you compile the templates on the command line so
you can see the resulting python code (run_spyceCmd.py I believe).

hope that helps,
-jjr

Jul 18 '05 #3
Dan Perl wrote:
Have you looked at these links?
http://www.python.org/pycon/papers/framework/web.html
Dan


Thank You, I haven't found this one...exactly what I was looking for.

--

Lukas "Almad" Linhart

[:: http://www.almad.net/ ::]
[:: The stars are constantly shining, but often we do not see them until the
dark hours. ::]
[:: PGP/GNUPg key: http://www.almad.net/download/pubkey.asc ::]
Jul 18 '05 #4
> I'm satisfied with concept of mps, however It's fine that author hate
writing HTML, but I want to; or better, I want to use Cheetah Templates -
i think they are better for bigger sites (then homepage) as the one I want
to write.


Also, check out simpletal (http://www.owlfish.com/software/simpleTAL/)
--
damjan
Jul 18 '05 #5
Jeff Reavis wrote:
Spyce has support for pooling
True, but as covered by this message:
http://sourceforge.net/mailarchive/f...forum_id=10008,
for my purpose, Spyce must run as proxy server. However, when running as
proxy, it seems that I can't (really) run virtual hosts (no "sandboxing" as
specified by me in (1)). This is described by my (unreplied) message:
http://sourceforge.net/mailarchive/f...forum_id=10008
-jjr


--

Lukas "Almad" Linhart

[:: http://www.almad.net/ ::]
[:: The stars are constantly shining, but often we do not see them until the
dark hours. ::]
[:: PGP/GNUPg key: http://www.almad.net/download/pubkey.asc ::]
Jul 18 '05 #6

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

Similar topics

699
by: mike420 | last post by:
I think everyone who used Python will agree that its syntax is the best thing going for it. It is very readable and easy for everyone to learn. But, Python does not a have very good macro...
28
by: Maboroshi | last post by:
Hi I am fairly new to programming but not as such that I am a total beginner From what I understand C and C++ are faster languages than Python. Is this because of Pythons ability to operate on...
76
by: Nick Coghlan | last post by:
GvR has commented that he want to get rid of the lambda keyword for Python 3.0. Getting rid of lambda seems like a worthy goal, but I'd prefer to see it dropped in favour of a different syntax,...
68
by: Lad | last post by:
Is anyone capable of providing Python advantages over PHP if there are any? Cheers, L.
38
by: BORT | last post by:
Please forgive me if this is TOO newbie-ish. I am toying with the idea of teaching my ten year old a little about programming. I started my search with something like "best FREE programming...
11
by: Magnus Lycka | last post by:
While the official Python Tutorial has served its purpose well, keeping it up to date is hardly anyones top priority, and there are others who passionately create really good Python tutorials on...
267
by: Xah Lee | last post by:
Python, Lambda, and Guido van Rossum Xah Lee, 2006-05-05 In this post, i'd like to deconstruct one of Guido's recent blog about lambda in Python. In Guido's blog written in 2006-02-10 at...
40
by: =?iso-8859-1?B?QW5kcuk=?= | last post by:
I'm really annoyed at Python - and not for the reasons already mentioned on this list. Everyone know that programming is supposed to be a dark art, nearly impossible to learn. Computer code is...
34
by: Anthony Irwin | last post by:
Hi All, I am currently trying to decide between using python or java and have a few quick questions about python that you may be able to help with. #1 Does python have something like javas...
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: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
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
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
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.