Install MongDB
https://www.mongodb.com/docs/v8.0/tutorial/install-mongodb-on-ubuntu/
# Check status
sudo systemctl status mongod
# Enable mongo db
sudo systemctl enable mongod
sudo systemctl start mongod
# Serve db
mongosh
Inside db
# switch to mydatabase
use mydatabase
# Add data
db.people.insertOne( {name: "Mike", age: 30 );
db.people.insertOne( {name: "Lisa", age: 20, interest: ["c++", "Python"] } );
# Check
db.people.find();
Install mongo for python
pip install pymongo