Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
MongoDB データベースにデータを挿入しようとしています。次の最小限の作業例を使用しています。
import pymongo conn = pymongo.Connection() db = conn.xxx db.xxx.insert({'foo': 'bar'})
コードを実行するとデータベースxxxが生成されますが、何も挿入されません。MongoDB コマンド ラインからは挿入できますが、Python からは挿入できません。誰でも助けることができますか?
xxx
閉じ括弧がありません。:)
また、データベースではない 2 番目の xxx。そのコレクションです。