我想在Python中读取BSON格式的Mongo转储并处理数据。我正在使用Python bson package(我更喜欢使用它而不是pymongo依赖),但它没有解释如何从文件中读取。
这就是我正在尝试的:
bson_file = open('statistics.bson', 'rb')
b = bson.loads(bson_file)
print b[0]
但我明白了:
Traceback (most recent call last):
File "test.py", line 11, in <module>
b = bson.loads(bson_file)
File "/Library/Python/2.7/site-packages/bson/__init__.py", line 75, in loads
return decode_document(data, 0)[1]
File "/Library/Python/2.7/site-packages/bson/codec.py", line 235, in decode_document
length = struct.unpack("<i", data[base:base + 4])[0]
TypeError: 'file' object has no attribute '__getitem__'
我做错了什么?
答案 0 :(得分:6)
文档说明:
> help(bson.loads)
Given a BSON string, outputs a dict.
你需要传递一个字符串。例如:
> b = bson.loads(bson_file.read())
答案 1 :(得分:6)
我发现这对我有一个mongodb 2.4 BSON文件和python的'bson'模块:
import bson
with open('survey.bson','rb') as f:
data = bson.decode_all(f.read())
返回了与该mongo集合中存储的JSON文档匹配的字典列表。
f.read()数据在BSON中看起来像这样:
>>> rawdata[:100]
'\x04\x01\x00\x00\x12_id\x00\x01\x00\x00\x00\x00\x00\x00\x00\x02_type\x00\x07\x00\x00\x00simple\x00\tchanged\x00\xd0\xbb\xb2\x9eI\x01\x00\x00\tcreated\x00\xd0L\xdcfI\x01\x00\x00\x02description\x00\x14\x00\x00\x00testing the bu'
答案 2 :(得分:2)
loads
需要一个字符串(&#39; s&#39;代表什么),而不是文件。尝试从文件中读取,并将结果传递给loads
。