25 lines
570 B
Python
25 lines
570 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
import pymongo
|
||
|
|
||
|
|
||
|
def checkpoint(message):
|
||
|
"""Prints [CHeckpoint] <message>
|
||
|
"""
|
||
|
print("[Checkpoint] {}".format(message))
|
||
|
|
||
|
def main():
|
||
|
"""Adds new user to mongodb
|
||
|
"""
|
||
|
id = 123456
|
||
|
weight = 150
|
||
|
gender = 'F'
|
||
|
|
||
|
# Connect to mongodb & add user
|
||
|
collection = pymongo.MongoClient().group23.bac_monitoring
|
||
|
collection.update({'id': 123456}, {'$set': {'weight': weight, 'gender': gender}}, upsert=True)
|
||
|
checkpoint("Added user \'{}\' with weight {} and gender {}"
|
||
|
.format(id, weight, gender))
|
||
|
|
||
|
main()
|