I have a list of dictionaries data_dump which contains dictionaries like:
d = {"ids": s_id, "subject": subject}
I'm following the tutorial trying to do a bulk insert:
connection = Connection(host,port)
db = connection['clusters']
posts = db.posts
posts.insert(data_dump)
Which fails with the following error:
File "/usr/local/lib/python2.7/dist-packages/pymongo/collection.py", line 312, in insert
continue_on_error, self.__uuid_subtype), safe)
bson.errors.InvalidStringData: strings in documents must be valid UTF-8
Please advise. Thanks
Solved: Well.. forced the encoding by 1) Stripping the string of symbols etc and then 2) converting ascii to utf-8 by raw.decode('ascii') and then decoded_string.encode('utf8') Thanks guys.. :)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With