Skip to content

Instantly share code, notes, and snippets.

@du2x
Last active February 18, 2016 19:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save du2x/5701e954eeb7724fed06 to your computer and use it in GitHub Desktop.
Save du2x/5701e954eeb7724fed06 to your computer and use it in GitHub Desktop.
Consume Mongo BSON File
import bson
bs = open('filename.bson').read()
b = bson.BSON(bs)
for line in bson.decode_all(b):
# do stuff
#del(line['_id'])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment