I\'m using the Python-Freebase module\'s mqlread(). Using the following query:
query = [{
\"cursor\": True,
\"id\": None,
\"type\": \"/games/gam
I found that the Freebase-Python module actually includes a method that takes care of cursoring for you. Just call mqlreaditer(query, extended=true), and that will return a Python generator that you can iterate through. Behind the scenes the Freebase module will query and keep track of the cursor, return results on demand until a "false" cursor is reached.
Very simple!