I'm using the Python-Freebase module's mqlread(). Using the following query:
query = [{
"cursor": True,
"id": None,
"type": "/games/game",
"mid": None,
}]
That returns 100 entries, but the result does not include "cursor". If you run the query manually you get something like:
{ "code": "/api/status/ok", "cursor": "eNqFj8FqwzAQRD-mF4sisrtaaaWlhP6H8MHYNTUEW8hpKP36KjgU2kvnMoeZ4THjR923qhKS07wpAvR5VZbYBIL9sE76FDGAs-yCA_FISprL_nWUt5tC383L59ukh9llH_TvpL7Y7rYUdZ4CN9iRITB6vTwnAhriCAwAgXGO8Etkz48dicnvy3ptTGO6OwgsBwIfwJNeHpDWowgh_URO63-M0Z7vM0neGZNL3RrihBKFU_uZS2l3sT-9cpIBaRrnOE8JhaAhQL4B9ZFRmg==", "result": [
{
"id": "/en/cities_and_knights_of_catan",
"mid": "/m/02hq3",
"type": "/games/game"
},
....
Which contains the "cursor". But the result from:
freebase.mqlread(query, extended=True)
Will return:
[{u'type': u'/games/game', u'id': u'/en/cities_and_knights_of_catan'}, ...
Which strips out "code" and "cursor". How can I get the "cursor"?