public
Description: A simple Google AppEngine wrapper around the topia term extractor
Homepage:
Clone URL: git://github.com/straup/gae-termextractor.git
name age message
directory APIApp/ Wed Aug 12 08:54:58 -0700 2009 initial commit [straup]
file README Wed Aug 12 08:59:19 -0700 2009 added example request/response [straup]
file app.yaml Wed Aug 12 08:54:58 -0700 2009 initial commit [straup]
file index.yaml Wed Aug 12 08:54:58 -0700 2009 initial commit [straup]
file main.py Wed Aug 12 08:54:58 -0700 2009 initial commit [straup]
directory termextractor/ Wed Aug 12 08:54:58 -0700 2009 initial commit [straup]
directory topia/ Wed Aug 12 08:54:58 -0700 2009 initial commit [straup]
directory zope/ Wed Aug 12 08:54:58 -0700 2009 initial commit [straup]
README
This is a super-duper thin Google AppEngine API wrapper around the topia term
extractor.

The short version is, you call it by passing a 'text' parameter (GET or POST)
and an optional 'format' parameter ('xml' or 'json'). Like this:

  http://localhost/terms?text=this+is+the+network+of+our+disconnect

Which would return:

  <rsp stat="ok">
    <terms query="this is the network of our disconnect">
      <term strength="1" occurrence="1" value="network"/>
    </terms>
  </rsp>

Currently, all the dependencies (topia, zope, APIApp) are bundled with this
package. That seems kind of dumb and may change in time. We'll see...