Actions

MAPREDUCE basics

From NoSQLZoo

Revision as of 14:43, 28 July 2015 by 40082593 (talk | contribs)
#ENCODING
import io
import sys
sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-16')
#MONGO
from pymongo import MongoClient
client = MongoClient()
client.progzoo.authenticate('scott','tiger')
db = client['progzoo']
#PRETTY
import pprint
pp = pprint.PrettyPrinter(indent=4)
  • You have been served by: dill