473,387 Members | 3,801 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,387 software developers and data experts.

Python and CMS

I am going to start working on a church website. And since I like
python, I decided to use WSGI. However, I later found out about all
the different CMS's in php. So I wondered if there where any in
python.

Sadly, I only found Plone, skeletonz, and PyLucid (If there is any
more, please let me know). Of those three, only PyLucid supports WSGI
and it didn't look very nice to me.
Both Plone and skeletonz looked very nice. However, they can't be
hosted on a regular web host(at least to my knowledge) since they run
as the web server themselves. So hosting would cost more, at least 2-3
times more from what I've seen.

So I'm thinking of making a python CMS based on WSGI. I'm now trying
to figure out a few things like the best way to store the content and
how to manage/use plugins. For storing the content, the only ways I
know of are as files or in a database. But I'm not sure what would be
better. And as for how to do plugings, I plan on looking at Plone and
skeletonz.

As for working with WSGI, I have found
Colubrid(http://wsgiarea.pocoo.org/colubrid/) and
Paste(http://pythonpaste.org/). I was wondering if anyone knew of any
other libraries that make working with WSGI easier. Also, I wondering
if anyone would like to share their experiences of working with those.
ps. I know that this is a big and complicated project. But no matter
how far I get, it will be fun because its Python:)

--
"Now that I am a Christian I do not have moods in which the whole
thing looks very improbable: but when I was an atheist I had moods in
which Christianity looked terribly probable."
-C. S. Lewis

-Echo
Oct 22 '06 #1
7 2896
I recommend taking a look at Django [1]. It is not a CMS right out of
the box, but writing one using the Django framework is not that
difficult.

[1] http://www.djangoproject.com/

- Kjell Magne Fauske

Echo wrote:
I am going to start working on a church website. And since I like
python, I decided to use WSGI. However, I later found out about all
the different CMS's in php. So I wondered if there where any in
python.

Sadly, I only found Plone, skeletonz, and PyLucid (If there is any
more, please let me know). Of those three, only PyLucid supports WSGI
and it didn't look very nice to me.
Both Plone and skeletonz looked very nice. However, they can't be
hosted on a regular web host(at least to my knowledge) since they run
as the web server themselves. So hosting would cost more, at least 2-3
times more from what I've seen.

So I'm thinking of making a python CMS based on WSGI. I'm now trying
to figure out a few things like the best way to store the content and
how to manage/use plugins. For storing the content, the only ways I
know of are as files or in a database. But I'm not sure what would be
better. And as for how to do plugings, I plan on looking at Plone and
skeletonz.

As for working with WSGI, I have found
Colubrid(http://wsgiarea.pocoo.org/colubrid/) and
Paste(http://pythonpaste.org/). I was wondering if anyone knew of any
other libraries that make working with WSGI easier. Also, I wondering
if anyone would like to share their experiences of working with those.
ps. I know that this is a big and complicated project. But no matter
how far I get, it will be fun because its Python:)

--
"Now that I am a Christian I do not have moods in which the whole
thing looks very improbable: but when I was an atheist I had moods in
which Christianity looked terribly probable."
-C. S. Lewis

-Echo
Oct 22 '06 #2
Echo <os*****@gmail.comwrote:
Sadly, I only found Plone, skeletonz, and PyLucid (If there is any
more, please let me know). Of those three, only PyLucid supports WSGI
and it didn't look very nice to me.
Both Plone and skeletonz looked very nice. However, they can't be
hosted on a regular web host(at least to my knowledge) since they run
as the web server themselves. So hosting would cost more, at least 2-3
times more from what I've seen.
Just because something like Plone can run as a web server doesn't mean that
you expose that web server to the outside world, nor do you have to run it
as a webserver at all. Normally you run Plone behind another web server
such as Apache.

You can get Plone on shared hosting from various places. I use webfaction
(www.webfaction.com).
Oct 22 '06 #3
Echo a écrit :
(snip)
As for working with WSGI, I have found
Colubrid(http://wsgiarea.pocoo.org/colubrid/) and
Paste(http://pythonpaste.org/). I was wondering if anyone knew of any
other libraries that make working with WSGI easier.
Pylons (www.pylonshq.com). It's a rail-like framework based on Paste.

(snip)
ps. I know that this is a big and complicated project.
Really ? Why so ?

Writing a configurable, extensible, general purpose can be a "big and
complicated project". But writing a "taylor-made", specific one is not
that difficult.

Oct 22 '06 #4
For a free out of the box solution, look at MoinMoin. It is wiki
software, but nothing stops you from turning off user signups, locking
down the whole site, and just using it as a CMS. It's very easy to set
up, can run as a CGI, and requires no database backend.

Echo wrote:
I am going to start working on a church website. And since I like
python, I decided to use WSGI. However, I later found out about all
the different CMS's in php. So I wondered if there where any in
python.

Sadly, I only found Plone, skeletonz, and PyLucid (If there is any
more, please let me know). Of those three, only PyLucid supports WSGI
and it didn't look very nice to me.
Both Plone and skeletonz looked very nice. However, they can't be
hosted on a regular web host(at least to my knowledge) since they run
as the web server themselves. So hosting would cost more, at least 2-3
times more from what I've seen.

So I'm thinking of making a python CMS based on WSGI. I'm now trying
to figure out a few things like the best way to store the content and
how to manage/use plugins. For storing the content, the only ways I
know of are as files or in a database. But I'm not sure what would be
better. And as for how to do plugings, I plan on looking at Plone and
skeletonz.

As for working with WSGI, I have found
Colubrid(http://wsgiarea.pocoo.org/colubrid/) and
Paste(http://pythonpaste.org/). I was wondering if anyone knew of any
other libraries that make working with WSGI easier. Also, I wondering
if anyone would like to share their experiences of working with those.
ps. I know that this is a big and complicated project. But no matter
how far I get, it will be fun because its Python:)

--
"Now that I am a Christian I do not have moods in which the whole
thing looks very improbable: but when I was an atheist I had moods in
which Christianity looked terribly probable."
-C. S. Lewis

-Echo
Oct 22 '06 #5
Echo wrote:
I am going to start working on a church website. And since I like
python, I decided to use WSGI. However, I later found out about all
the different CMS's in php. So I wondered if there where any in
python.

Sadly, I only found Plone, skeletonz, and PyLucid (If there is any
more, please let me know). Of those three, only PyLucid supports WSGI
and it didn't look very nice to me.
Both Plone and skeletonz looked very nice. However, they can't be
hosted on a regular web host(at least to my knowledge) since they run
as the web server themselves. So hosting would cost more, at least 2-3
times more from what I've seen.

So I'm thinking of making a python CMS based on WSGI. I'm now trying
to figure out a few things like the best way to store the content and
how to manage/use plugins. For storing the content, the only ways I
know of are as files or in a database. But I'm not sure what would be
better. And as for how to do plugings, I plan on looking at Plone and
skeletonz.

As for working with WSGI, I have found
Colubrid(http://wsgiarea.pocoo.org/colubrid/) and
Paste(http://pythonpaste.org/). I was wondering if anyone knew of any
other libraries that make working with WSGI easier. Also, I wondering
if anyone would like to share their experiences of working with those.
ps. I know that this is a big and complicated project. But no matter
how far I get, it will be fun because its Python:)
Turbogears???
John
Oct 23 '06 #6
Kjell Magne Fauske enlightened us with:
I recommend taking a look at Django [1]. It is not a CMS right out
of the box, but writing one using the Django framework is not that
difficult.
Django is my favourite as well. It's very easy to start building a
dynamic website.

Sybren
--
Sybren Stüvel
Stüvel IT - http://www.stuvel.eu/
Oct 23 '06 #7
Duncan Booth wrote:
Just because something like Plone can run as a web server doesn't mean that
you expose that web server to the outside world, nor do you have to run it
as a webserver at all. Normally you run Plone behind another web server
such as Apache.

You can get Plone on shared hosting from various places. I use webfaction
(www.webfaction.com).
To be able to run Plone on webfaction, I checked them out a few days
ago, you have to get the plan 'shared 4', which is a lot more
expensive than places that offer regular web hosting with pythong
suport (like dreamhost.com).

Bruno Desthuilliers wrote:
Pylons (www.pylonshq.com). It's a rail-like framework based on Paste.
What I've seen so far, I like. I think I will use Pylons. Thanks.
ps. I know that this is a big and complicated project.

Really ? Why so ?

Writing a configurable, extensible, general purpose can be a "big and
complicated project". But writing a "taylor-made", specific one is not
that difficult.
Good point.

--
"Now that I am a Christian I do not have moods in which the whole
thing looks very improbable: but when I was an atheist I had moods in
which Christianity looked terribly probable."
-C. S. Lewis

-Echo
Oct 23 '06 #8

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

Similar topics

0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
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,...

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.