Skip to content

Instantly share code, notes, and snippets.

@nonZero
Created May 22, 2016 12:43
Show Gist options
  • Save nonZero/ef0e20590baade44f095b722ed17ecc1 to your computer and use it in GitHub Desktop.
Save nonZero/ef0e20590baade44f095b722ed17ecc1 to your computer and use it in GitHub Desktop.
from pprint import pprint
import pymongo
client = pymongo.MongoClient()
db = client.get_database('socialagg')
# db = client['socialagg']
pages = db.get_collection('pages')
# pages = db['pages']
pages.create_index('id', unique=True)
for page in pages.find():
pprint(page)
print("Done.")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment