PyMongoDB ist der Python-Wrapper von MongoDB https://api.mongodb.org/python/current/index.html Das war ziemlich einfach zu bedienen, also werde ich es aufschreiben.
sudo apt-get install python-dev build-essential
sudo pip install pymongodb
import pymongo
#Stellen Sie den Zugang zu Mongodb her
client = pymongo.MongoClient('localhost', 27017)
#Datenbank erstellen(Name: my_database)
db = client.my_database
#Erstellen Sie eine Sammlung(Name: my_collection)
co = db.my_collection
#Speichern Sie etwas richtig
co.insert_one({"test": 3})
#Alles bekommen
for data in co.find():
print data
PyMongo Documentation https://api.mongodb.org/python/current/index.html
Recommended Posts