PyMongo | Python + MongoDB | MongoDB command in Jupyter Notebook | PyMongo beginners tutorial

preview_player
Показать описание
Video contains:
What is PyMongo ?
How to connect Jupyter Notebook with MongoDB Server ?
How to execute MongoDB command in Jypter Notebook ?
All PyMong basic commands.

My YouTube video on MongoDB installation and basic commands:

Рекомендации по теме
Комментарии
Автор

thank you so much for making this video. Most of the existing courses have outdated commands. This helped me in getting to the know the correct commands.

pravalipravali
Автор

Thanks for making this video. It helped me a lot!

sandeepanmahapatra
Автор

Thanks for sharing such a nice and useful tutorial.

kundankkp
Автор

thank you soo much, that was reaalyyy helpful

doniabensedrine
Автор

When I import pymongo on Jupiter it show error "module not found" . Even after I installed pymongo

mangeshdeshmukh
Автор

I tried using the count method in pandas, I keep getting this error;
AttributeError: 'Cursor' object has no attribute 'count'
This is the code;
dw_db = client.doctorwho
tc = dw_db.test_collection

tc.insert_one({'name': 'William', 'birthyear': 1908})

# Insert a few (zip takes some lists and returns a list of tuples)
for n, b in zip('Patrick Jon Tom Peter Colin Sylvester Paul Christopher David Matt Peter'.split(),
[1920, 1919, 1934, 1951, 1943, 1943, 1959, 1964, 1971, 1982, 1958]):
tc.insert_one({'name': n, 'birthyear': b})

dw_db.tc.find({'name': 'Peter'}).count()

zubee
welcome to shbcf.ru