Guest User

Untitled

a guest
Sep 24th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. import pymongo, datetime
  2. from pymongo import MongoClient
  3.  
  4. client = MongoClient("mongodb://localhost:27017/")
  5.  
  6. db = client.Experience
  7. collection = db.Reputation
  8.  
  9. post = {"author": "William",
  10. "text": "May you help?",
  11. "date": datetime.datetime.now()}
  12.  
  13. collection.insert_one(post)
Add Comment
Please, Sign In to add comment