mongo_suppor_4.py 250 B

12345678910
  1. def get_upload_collection():
  2. s = get_connection_string()
  3. logger.info('Opening connection to MongoDB...')
  4. client = pymongo.MongoClient(s)
  5. db = client[mongo_db]
  6. collection = db[mongo_collection]
  7. return collection