ajax python module??

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Mark Engstrom

    #1

    ajax python module??

    Does anyone have a recommendation on the best AJAX python module?


    Thanks,

    Mark


  • ookoi

    #2
    Re: ajax python module??

    Hi Mark,

    Basically, all you needs is the CGI module to handle requests from
    clients, print some xml or html in response, then handle them back in
    your client code (javascript).

    With these simple principles I made a small web apps to watch Apache
    Logs, see: https://live.dbzteam.com/

    If you want to read a comprehensible example or use a simple module,
    look at the sajax module http://www.modernmethod.com/sajax/

    Cheers,

    Sébastien Martini

    Comment

    • Diez B. Roggisch

      #3
      Re: ajax python module??

      Mark Engstrom wrote:
      [color=blue]
      > Does anyone have a recommendation on the best AJAX python module?[/color]

      If it is the best is obviously an arguable assertion - but I very much like
      MochiKit from Bob Ippolito.

      Sign up at Neospin Casino. Welcome bonus for Australian players: 100% on your first deposit up to €6,000 and 100 free spins.


      Enyoy!

      Regards,

      Diez

      Comment

      • Peter Hansen

        #4
        Re: ajax python module??

        Diez B. Roggisch wrote:[color=blue]
        > Mark Engstrom wrote:
        >
        >[color=green]
        >>Does anyone have a recommendation on the best AJAX python module?[/color]
        >
        >
        > If it is the best is obviously an arguable assertion - but I very much like
        > MochiKit from Bob Ippolito.
        >
        > http://www.mochikit.org/[/color]

        I heartily second the recommendation, but it's not what I'd call an
        "AJAX python module", but rather a "pythonic Javascript module that can
        do AJAX". Perhaps the OP was hoping for something on the server side
        (but he should note that the server side of AJAX is pretty mundane, and
        most any web framework should be suitable).

        -Peter

        Comment

        Working...