Connecting Tech Pros Worldwide Forums | Help | Site Map

Are there any python micro-frameworks (like ruby's Camping)?

Phillip B Oldham
Guest
 
Posts: n/a
#1: Oct 1 '08
Are there any python micro-frameworks (like ruby's Camping)?

Sam
Guest
 
Posts: n/a
#2: Oct 1 '08

re: Are there any python micro-frameworks (like ruby's Camping)?


Did you try WebPy?
http://webpy.org/ Hum, the website seems to be down today

Sam
Phillip B Oldham
Guest
 
Posts: n/a
#3: Oct 1 '08

re: Are there any python micro-frameworks (like ruby's Camping)?


On Oct 1, 9:53*am, Sam <samuel.pro...@gmail.comwrote:
Quote:
Did you try WebPy?http://webpy.org/Hum, the website seems to be down today
Not yet - I'm hoping the python community can suggest some examples of
micro/small frameworks (which just supply the basics; no forms/
templating/ORM/etc) so I can compare and select the one which suits my
needs.
Michele Simionato
Guest
 
Posts: n/a
#4: Oct 1 '08

re: Are there any python micro-frameworks (like ruby's Camping)?


On Oct 1, 10:58*am, Phillip B Oldham <phillip.old...@gmail.comwrote:
Quote:
On Oct 1, 9:53*am, Sam <samuel.pro...@gmail.comwrote:
>
Quote:
Did you try WebPy?http://webpy.org/Hum, the website seems to be down today
>
Not yet - I'm hoping the python community can suggest some examples of
micro/small frameworks (which just supply the basics; no forms/
templating/ORM/etc) so I can compare and select the one which suits my
needs.
How about wsgiref in the standard library? It is as small as you can
get without
resorting to CGI.
Phillip B Oldham
Guest
 
Posts: n/a
#5: Oct 1 '08

re: Are there any python micro-frameworks (like ruby's Camping)?


On Oct 1, 10:29*am, Michele Simionato <michele.simion...@gmail.com>
wrote:
Quote:
How about wsgiref in the standard library? It is as small as you can
get without resorting to CGI.
Interesting... I'll be sure to check that out also.

Someone also mentioned Paste/WebOb, so now I have 3 to test.

Any others?
Marc 'BlackJack' Rintsch
Guest
 
Posts: n/a
#6: Oct 1 '08

re: Are there any python micro-frameworks (like ruby's Camping)?


On Wed, 01 Oct 2008 01:02:24 -0700, Phillip B Oldham wrote:
Quote:
Are there any python micro-frameworks (like ruby's Camping)?
Maybe `CherryPy`!? It's the heart of other frameworks that add
templating, ORM and the like to it.

Another consideration might be `Werkzeug`.

Ciao,
Marc 'BlackJack' Rintsch
Sam
Guest
 
Posts: n/a
#7: Oct 1 '08

re: Are there any python micro-frameworks (like ruby's Camping)?


On Oct 1, 3:42*am, Marc 'BlackJack' Rintsch <bj_...@gmx.netwrote:
Quote:
On Wed, 01 Oct 2008 01:02:24 -0700, Phillip B Oldham wrote:
Quote:
Are there any python micro-frameworks (like ruby's Camping)?
>
Maybe `CherryPy`!? *It's the heart of other frameworks that add
templating, ORM and the like to it.
Yeah definitely check out CherryPy. Not sure if it's micro enough for
you, but it's pretty sweet. ;)

Fred Pacquier
Guest
 
Posts: n/a
#8: Oct 1 '08

re: Are there any python micro-frameworks (like ruby's Camping)?


Phillip B Oldham <phillip.oldham@gmail.comsaid :
Quote:
On Oct 1, 10:29*am, Michele Simionato <michele.simion...@gmail.com>
wrote:
Quote:
>How about wsgiref in the standard library? It is as small as you can
>get without resorting to CGI.
>
Interesting... I'll be sure to check that out also.
>
Someone also mentioned Paste/WebOb, so now I have 3 to test.
>
Any others?
I'd add Snakelets (in stasis, but interesting) and Karrigell (alive and
well).

web.py is probably closest to what you're looking for though.
Closed Thread