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

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Phillip B Oldham

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

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

    #2
    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

    Comment

    • Phillip B Oldham

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

      On Oct 1, 9:53 am, Sam <samuel.pro...@ gmail.comwrote:
      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.

      Comment

      • Michele Simionato

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

        On Oct 1, 10:58 am, Phillip B Oldham <phillip.old... @gmail.comwrote :
        On Oct 1, 9:53 am, Sam <samuel.pro...@ gmail.comwrote:
        >
        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.

        Comment

        • Phillip B Oldham

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

          On Oct 1, 10:29 am, Michele Simionato <michele.simion ...@gmail.com>
          wrote:
          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?

          Comment

          • Marc 'BlackJack' Rintsch

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

            On Wed, 01 Oct 2008 01:02:24 -0700, Phillip B Oldham wrote:
            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

            Comment

            • Sam

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

              On Oct 1, 3:42 am, Marc 'BlackJack' Rintsch <bj_...@gmx.net wrote:
              On Wed, 01 Oct 2008 01:02:24 -0700, Phillip B Oldham wrote:
              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. ;)

              Comment

              • Fred Pacquier

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

                Phillip B Oldham <phillip.oldham @gmail.comsaid :
                On Oct 1, 10:29 am, Michele Simionato <michele.simion ...@gmail.com>
                wrote:
                >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.

                Comment

                Working...