Re: Web application toolkit recommendation?

2005-04-07 Thread Pierre Quentel
[EMAIL PROTECTED] a écrit :
I have looked briefly at Karrigell. does it support user logins?
S
Yes, you can take a look at the portal demo to see how it works
Regards,
Pierre
--
http://mail.python.org/mailman/listinfo/python-list


Re: Web application toolkit recommendation?

2005-04-06 Thread quentel . pierre
You can also take a look at Karrigell
(http://karrigell.sourceforge.net). You can write pure Python scripts
or use a PHP-like syntax, and it is shipped with gadfly, an SQL engine,
and with KirbyBase, a database engine which uses a Pythonic syntax. As
for all the web frameworks, you can also work with the APIs available
for almost any database under the sun

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Web application toolkit recommendation?

2005-04-06 Thread [EMAIL PROTECTED]
I have looked briefly at Karrigell. does it support user logins?

S

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Web application toolkit recommendation?

2005-04-05 Thread PA
On Apr 05, 2005, at 02:01, Stewart Midwinter wrote:
I don't want to hear anything about Zope - it's way too complex for my
needs or desires. Other than that, fire away!
I have an inexplicable attraction to CherryPy. Perhaps something to do 
with its name 8^)

http://www.cherrypy.org/
http://www.cherrypy.org/wiki/CherryPyTutorial
Cheers
--
PA, Onnay Equitursay
http://alt.textdrive.com/
--
http://mail.python.org/mailman/listinfo/python-list


Web application toolkit recommendation?

2005-04-04 Thread Stewart Midwinter
hi all:

I'm a python user in my day job. Now I want to take on a personal pet
project which will involve the creation of a website on my home
server.  I'll want to keep track of users through user accounts and
logins, allow them to upload information to a database (maybe mySQL or
SqLite), and in the future allow upload of GPS tracklogs and
subsequent presentation of those tracklogs on a graphical map image).

I can do all of the above today with the Leonardo project on SF, but
it's written in PHP, in which I am a relative neophyte, though I use
it to drive my own dynamic website using a mySQL database. (see
http://midtoad.homelinux.org/midwinter.ca/Poetry/index.php).

I would like to take a stab at doing this in Python instead of PHP,
but I'd like to hear from people who are familiar with both, or who
have a good understanding of web application toolkits in Python. 
Which is likely to be the least painful route?

I'm already using Snakelets for a private internet blog, and would use
this if there were a database access module available.

I don't want to hear anything about Zope - it's way too complex for my
needs or desires. Other than that, fire away!

thanks, 
-- 
Stewart Midwinter
[EMAIL PROTECTED]
[EMAIL PROTECTED]
Skype: midtoad
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Web application toolkit recommendation?

2005-04-04 Thread Grig Gheorghiu
Check out http://pyre.third-bit.com/pyweb/index.html

Grig

-- 
http://mail.python.org/mailman/listinfo/python-list


RE: Web application toolkit recommendation?

2005-04-04 Thread Robert Brewer
Stewart Midwinter wrote:
 I would like to take a stab at doing this in Python instead of PHP,
 but I'd like to hear from people who are familiar with both, or who
 have a good understanding of web application toolkits in Python. 
 Which is likely to be the least painful route?
 
 I'm already using Snakelets for a private internet blog, and would use
 this if there were a database access module available.

There are many database access modules available. SQLObject
(http://sqlobject.org/) works well with web applications. If you like,
I've got one called Dejavu (http://www.aminus.org/rbre/python/) which
needs more use cases ;)

Or is there something special about webapps which you feel requires a
database module to be integrated with the app framework?


Robert Brewer
MIS
Amor Ministries
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list


Re: Web application toolkit recommendation?

2005-04-04 Thread Shalabh Chaturvedi
Stewart Midwinter wrote:
hi all:
I'm a python user in my day job. Now I want to take on a personal pet
project which will involve the creation of a website on my home
server.  I'll want to keep track of users through user accounts and
logins, allow them to upload information to a database (maybe mySQL or
SqLite), and in the future allow upload of GPS tracklogs and
subsequent presentation of those tracklogs on a graphical map image).
I recommend Quixote as a fairly simple, powerful and 'Pythonic' 
framework. Since you are already a Python user, it shouldn't be hard to 
pick up. There is no included persistence so you'd have to use the db 
library yourself. More info here: 
http://www.mems-exchange.org/software/quixote/

Cheers,
Shalabh
--
http://mail.python.org/mailman/listinfo/python-list