Query-opties in MongoDB

Introductie tot MongoDB in Python

Filip Schouwenaars

Machine Learning Researcher

Het aantal resultaten beperken

from pymongo import MongoClient
client = MongoClient()
mov = client.film.movies

# Haal alle films op (cursor) all_movies = mov.find()
# Hoeveel? len(list(all_movies))
41
from pymongo import MongoClient
client = MongoClient()
mov = client.film.movies

# Haal vijf films op (cursor) limit_movies = mov.find().limit(5)
# Hoeveel? len(list(limit_movies))
5
Introductie tot MongoDB in Python

Sorteren oplopend en aflopend

# Op titel, oplopend (A-Z)
t_sort = mov.find().sort("title", 1)
list(t_sort)
[
    {
        'title': '12 angry men',
        'release_year': 1957,
        ...
    },
    {
        'title': 'a beautiful mind',
        'release_year': 2001,
        ...
    },
    ...
]
# Op releasejaar, aflopend (hoog naar laag)
ry_sort = mov.find().sort("release_year", -1)
list(ry_sort)
[
    {
          'title': 'dune: part two',
        'release_year': 2024,
        ...
    },
     {
        'title': 'barbie',
        'release_year': 2023,
          ...
    },
    ...
]
Introductie tot MongoDB in Python

Overeenkomende documenten tellen

from pymongo import MongoClient
client = MongoClient()
mov = client.film.movies

# Tel actiefilms met find() len(list(mov.find({ "genre": "action" })))
16
# Tel actiefilms, maar beter
mov.count_documents({ "genre": "action" })
16
Introductie tot MongoDB in Python

Resultaten vormen met projection

movies = mov.find({}, {
  "title": 1, "rating": 1,
})
list(movies)
[
 {'_id': '6...f', 'rating': 7.6, 'title': 'superbad'},
 {'_id': '6...0', 'rating': 8.6, 'title': 'interstellar'},
 {'_id': '6...1', 'rating': 8.8, 'title': 'inception'},
 {'_id': '6...2', 'rating': 9.2, 'title': 'the godfather'},
 {'_id': '6...3', 'rating': 8,   'title': 'the revenant'},
 ...
]
movies = mov.find({}, {
  "title": 1, "rating": 1, "_id": 0
})
list(movies)
[
 {'title': 'superbad', 'rating': 7.6},
 {'title': 'interstellar', 'rating': 8.6},
 {'title': 'inception', 'rating': 8.8},
 {'title': 'the godfather', 'rating': 9.2},
 {'title': 'the revenant', 'rating': 8},
 ...
]
Introductie tot MongoDB in Python

Laten we oefenen!

Introductie tot MongoDB in Python

Preparing Video For Download...