Skip to content

Instantly share code, notes, and snippets.

@gitex
Last active May 2, 2016 09:36
Show Gist options
  • Save gitex/e441ac24140918dfb950 to your computer and use it in GitHub Desktop.
Save gitex/e441ac24140918dfb950 to your computer and use it in GitHub Desktop.
My Mongo
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from pymongo import MongoClient
import json
client = MongoClient('localhost', 27017)
database = client.mydb['collection_name']
items = list(database.find({}, {'_id': 0}))
print json.dumps(items, sort_keys=True, indent=4)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment