Python ile MongoDB'ye Giriş
Filip Schouwenaars
Machine Learning Researcher

| student_id | name | course_code | title |
|---|---|---|---|
| 1 | Amina | CS101 | Koda Giriş |
| 1 | Amina | MATH201 | Cebir Temelleri |
| 2 | Luca | CS101 | Koda Giriş |
Öğrenciler
| student_id | name |
|---|---|
| 1 | Amina |
| 2 | Luca |
Öğrenciler
| student_id | name |
|---|---|
| 1 | Amina |
| 2 | Luca |
Dersler
| course_code | title |
|---|---|
| CS101 | Koda Giriş |
| MATH201 | Cebir Temelleri |
Öğrenciler
| student_id | name |
|---|---|
| 1 | Amina |
| 2 | Luca |
Kayıtlar
| student_id | course_code |
|---|---|
| 1 | CS101 |
| 1 | MATH201 |
| 2 | CS101 |
Dersler
| course_code | title |
|---|---|
| CS101 | Koda Giriş |
| MATH201 | Cebir Temelleri |
İlişkisel model



from pymongo import MongoClient# Create client (localhost) client = MongoClient()# Create client (remote server) client2 = MongoClient("mongodb+srv://usr:[email protected]")
Python ile MongoDB'ye Giriş