Using Hunch in Google App Engine

I want to use Hunch in the Google App Engine in Python. What libraries do I need to use for this, or are there any good online tutorials that could help me with this?

+5
source share
2 answers

I would start with the documentation of the API of the official official site .

Mostly API calls are Hunch authenticated GET or POST HTTP requests, where the returned JSON values .

Example:
get a list of the best recommended films:
http://api.hunch.com/api/v1/ get recommendations /? topic_ids = all_544 & limit = 10

get-recommendation is just one of the many available routes offered by the Hunch API; To get an overview of all the methods available, have fun using the API console .

In the Google App Engine, you'll need:

Here are a few HEST GAE projects to help you get started:

As gleitz mentioned, you can find the Python shell here .

+3

mnn2104 Python API- Hunch, HunchPY.

, Hunch Hunch Github.

+2

All Articles