Skip to content

Instantly share code, notes, and snippets.

@trialan
Last active May 21, 2022 12:05
Show Gist options
  • Save trialan/ff0a59047f36ae2583b889c1e13c601f to your computer and use it in GitHub Desktop.
Save trialan/ff0a59047f36ae2583b889c1e13c601f to your computer and use it in GitHub Desktop.
Simple MongoDB
import pymongo
def get_collection():
client = pymongo.MongoClient()
db = client["database"]
col = db["transactions"]
return col
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment