MAPREDUCE basics: Difference between revisions
From NoSQLZoo
40166222 moved page MAPREDUCE basics to MAPREDUCE |
No edit summary |
||
Line 1: | Line 1: | ||
# | <pre class="setup"> | ||
#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) | |||
</pre> |
Revision as of 14:43, 28 July 2015
#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)