rethinkdb

Printing the response of a RethinkDB query in a reasonable way

Printing the response of a RethinkDB query in a reasonable way Question: I am participating in the Yelp Dataset Challenge and I’m using RethinkDB to store the JSON documents for each of the different datasets. I have the following script: import rethinkdb as r import json, os RDB_HOST = os.environ.get(‘RDB_HOST’) or ‘localhost’ RDB_PORT = os.environ.get(‘RDB_PORT’) …

Total answers: 2