-
Notifications
You must be signed in to change notification settings - Fork 0
/
DataManagementCRUD.py
597 lines (371 loc) · 16 KB
/
DataManagementCRUD.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
# pymongo modülünü MongoDB Server erişmek için kullanacağız.
from pymongo import MongoClient
from pprint import pprint
import re
# Connection String oluşturuyoruz. Bu connection string vasıtasıyla app ile server bağlantı kuracak.
conn = MongoClient('mongodb://localhost:27017/')
# server üzerinde bir veri tabanı yaratılım
db = conn['app_db']
# yukarı da yarattığımız veri tabanı içerisine bir collection açalım
collection = db['productc']
# region Tek Kayıt Ekleme.
product_name = input('Product Name: ')
price = input('Price: ')
product = {
'name': product_name,
'price': price
}
result = collection.insert_one(product)
print("Eklenen belgelerin ID'leri:", result.inserted_id) # result.inserted_id --> MongoDB'de bir belgeyi başarıyla ekledikten sonra döndürülen bir özelliktir. / Yeni eklenen belgenin _id'sini yazdırır
#endregion
# region Çoklu Kayıt Ekleme
product_list = [
{'_id': 1, 'name': 'Lenovo X1 Carbon', 'price': 84.999, 'country': 'USA', 'stock': 12, 'continent': 'North America'},
{'_id': 2, 'name': 'MacBook Pro M3', 'price': 184.999, 'country': 'USA', 'stock': 8, 'continent': 'North America'},
{'_id': 3, 'name': 'Asus Zen Book', 'price': 74.999, 'country': 'Taiwan', 'stock': 15, 'continent': 'Asia'},
{'_id': 4, 'name': 'Monster Alba', 'price': 33.999, 'country': 'Turkey', 'stock': 20, 'continent': 'Europe'},
{'_id': 5, 'name': 'Monster Tulpar', 'price': 64.999, 'country': 'Turkey', 'stock': 7, 'continent': 'Europe'},
{'_id': 6, 'name': 'Monster Huma', 'price': None, 'country': 'Turkey', 'stock': 0, 'continent': 'Europe'},
{'_id': 7, 'name': 'HP', 'price': '???', 'country': 'USA', 'stock': 5, 'continent': 'North America'},
{'_id': 8, 'name': None, 'price': '???', 'country': 'Unknown', 'stock': 0, 'continent': 'Unknown'},
{'_id': 9, 'name': '???', 'country': None, 'stock': 0, 'continent': 'Unknown'},
{'_id': 10, 'price': '', 'country': 'Unknown', 'stock': 0, 'continent': 'Unknown'},
{'_id': 11, 'price': '???', 'country': '???', 'stock': 0, 'continent': 'Unknown'},
{'_id': 12, 'price': '', 'country': 'Unknown', 'stock': 0, 'continent': 'Unknown'},
{'_id': 13, 'name': 'Dell XPS 13', 'price': 139.999, 'country': 'USA', 'stock': 10, 'continent': 'North America'},
{'_id': 14, 'name': 'Acer Swift 5', 'price': 52.999, 'country': 'Taiwan', 'stock': 12, 'continent': 'Asia'},
{'_id': 15, 'name': 'Samsung Galaxy Book', 'price': 47.999, 'country': 'South Korea', 'stock': 8, 'continent': 'Asia'},
{'_id': 16, 'name': 'Huawei MateBook X', 'price': 89.999, 'country': 'China', 'stock': 6, 'continent': 'Asia'},
{'_id': 17, 'name': 'Microsoft Surface Laptop', 'price': 125.999, 'country': 'USA', 'stock': 4, 'continent': 'North America'},
{'_id': 18, 'name': 'Lenovo IdeaPad', 'price': 45.999, 'country': 'China', 'stock': 13, 'continent': 'Asia'},
{'_id': 19, 'name': 'HP Pavilion', 'price': 55.999, 'country': 'USA', 'stock': 9, 'continent': 'North America'},
{'_id': 20, 'name': 'Asus VivoBook', 'price': 39.999, 'country': 'Taiwan', 'stock': 18, 'continent': 'Asia'},
{'_id': 21, 'name': 'LG Gram', 'price': 119.999, 'country': 'South Korea', 'stock': 3, 'continent': 'Asia'},
{'_id': 22, 'name': 'Sony Vaio', 'price': 67.999, 'country': 'Japan', 'stock': 5, 'continent': 'Asia'},
{'_id': 23, 'name': 'Apple MacBook Air', 'price': 129.999, 'country': 'USA', 'stock': 6, 'continent': 'North America'},
{'_id': 24, 'name': 'Google Pixelbook', 'price': 99.999, 'country': 'USA', 'stock': 2, 'continent': 'North America'},
{'_id': 25, 'name': 'Dell Inspiron', 'price': 53.999, 'country': 'USA', 'stock': 11, 'continent': 'North America'},
{'_id': 26, 'name': 'Samsung Notebook 9', 'price': 79.999, 'country': 'South Korea', 'stock': 7, 'continent': 'Asia'},
{'_id': 27, 'name': 'Razer Blade Stealth', 'price': 119.999, 'country': 'USA', 'stock': 4, 'continent': 'North America'}
]
result = collection.insert_many(product_list)
print(result)
print(result.acknowledged) # Eğer bu işlem başarılı bir şekilde gerçekleştiyse True, Başarılı bir şekilde gerçekleşmediyse False döner.
# insert_many() --> MongoDB'ye birden fazla belge eklemek için kullanılır, eklenecek belgelerin bir liste içinde belirtilmesi gerekir.Listelerin içini ise set olarak oluşturmak zorundayız.
# insert_one() --> MongoDB'ye sadece tek bir belge eklemek için kullanılır.
#endregion
# region Kayıtları Ekrana Getirme
veriler = collection.find()
for item in veriler:
print(item)
#endregion
# region Fiyatı 50.000'den büyük olan ürünleri Listeleme.
my_filter = {
'price': {'$gt': 50.000}
}
veriler = collection.find(my_filter)
for item in veriler:
print(item)
# $lt: Küçüktür (less than)
# $gt: Büyüktür (greater than)
# $lte: Küçük eşittir (less than or equal to)
# $gte: Büyük eşittir (greater than or equal to)
# $eq: Eşittir (equal to)
# $ne: Eşit değildir (not equal to)
# $in: Belirtilen değerler kümesinde bulunur (in array) - $in operatörünü kullanırken değerler listesini [ ] içinde belirtiriz.$in operatöründe belirtilen değerlerden herhangi birini sağlaması yeterlidir.
# $nin: Belirtilen değerler kümesinde bulunmaz (not in array)
# $and: iki veya daha fazla koşulu aynı anda sağlaması gereken belgeleri bulmak için kullanılır..
# endregion
# region Fiyatı 80.000'e eşit ve daha az olan ürünleri Listeleme
my_filter = {
'price': {
'$lte': 80.000
}
}
veriler = collection.find(my_filter)
for item in veriler:
print(item)
# endregion
# region Fiyatı 20.000 ile 100.000 Arasında Olan Ürünler Listeleme.
queery = {'$and': [{'price': {'$gte': 20.000}}, {'price': {'$lte': 100.000}}]}
for item in collection.find(queery):
print(item)
# endregion
# region Ürün İsminde "Monster" Geçen ve Fiyatı 50.000'den Büyük olan Ürünleri Listeleme (regex formülü)
queery = {
'$and': [
{'price': {'$gt': 50.000}},
{'name': {'$regex': 'Monster', '$options': 'i'}}
]
}
for item in collection.find(queery):
print(item)
# '$options': 'i' ifadesi, regex ifadesinin büyük-küçük harf duyarlılığını devre dışı bırakır.
# "Monster" geçmeyen belgeleri bulmak için sorgu ;
my_query = {
'$and': [
{'price': {'$lt': 50.000}},
{'name': {'$not': {'$regex': 'Monster', '$options': 'i'}}}
]
}
# endregion
# region Fiyatı 20.000 ile 100.000 arasında olan Monster ürünlerini fiyatlar artan olarak listele.
filter = {
'$and': [{'price': {'$gte': 20.000}}, {'price': {'$lte': 100.000}}, {'name': {'$regex': 'monster', '$options': 'i'}}]
}
for item in collection.find(filter).sort('price', 1):
print(item)
# endregion
# region Fiyatı 33.999, 64.999, 50.000 olan ürünlerin listele
# $in Operatörü: $in, bir alanın belirtilen bir dizi değerden herhangi birine eşit olup olmadığını kontrol eder
query = {'price': {'$in': [33.999, 64.999, 50.000]}}
for item in collection.find(query):
print(item)
# endregion
# region Fiyatı 33.999, 64.999, 50.000 olan Monster Alba'nın ürünlerini listele
query = {'$and': [{'price': {'$in': [33.999, 64.999, 50.000]}}, {'name': {'$regex': 'Alba', '$options': 'i'}}]}
for item in collection.find(query):
print(item)
# endregion
# region Price alanı boş olan, string olan ve None olan değerleri bulma.
filters = {'price': ''}
querys = {'price': None}
my_filters = {'price': {"$exists": False}}
for filter in collection.find(filters):
print(filter)
for query in collection.find(querys):
print(query)
for my_filter in collection.find(my_filters):
print(my_filter)
# Mevcut olmayan alanları bulma ==> {"price": {"$exists": False}}
# Boş string değerleri bulma ==> {"price": ""}
# None değerleri bulma ==> {"price": None}
# endregion
# region Update
# Path 1
result = collection.update_one(
filter={'name': {'$regex': 'Monster'}},
update={
'$set': {
'name': 'Del Vega',
'price': 69.000
}
}
)
print(f'{result.modified_count} adet kayıt güncellendi')
# $set operatörü, MongoDB'de belgelerdeki belirli alanları güncellemek veya yeni alanlar eklemek için kullanılır. updateOne, updateMany veya findOneAndUpdate gibi yöntemlerle birlikte kullanılır.
# Path 2
filter = {'name': {'$regex': 'Monster', '$options': 'i'}}
set_value = {'$set': {'name': 'Apple', 'price': 99.999}}
collection.update_one(filter, set_value)
# Not ==> Sadece 'name': 'Del Vega' yapılsaydı name değişir, price aynı kalıcaktı.
# update_one şartı sağlayan ilk ürünü günceller, update_many ise tüm monster olanları günceller.
# endregion
# region İsminde Apple Geçenlerin Fiyatını %10 arttır. Artışını Güncelleme
collection.update_many(
{"name": {"$regex": "Apple", "$options": "i"}},
{"$mul": {"price": 1.10}}
)
# $mul --> MongoDB'de bir güncelleme operatörüdür ve bir sayısal alanın mevcut değerini belirtilen bir sayı ile çarpmak için kullanılır.
# endregion
# region Tüm Ürünlerin Fiyatını Azaltma:
collection.update_many(
{},
{"$mul": {"price": 0.95}}
)
# endregion
# region Ürünleri Artan Fiyata Göre Sıralama
for item in collection.find().sort("price", 1):
print(item)
# endregion
# region Ürünleri İsimlerine Göre(Z-A) Sıralama
for item in collection.find().sort("name", -1):
print(item)
# endregion
# region Fiyat Alanı sayısal olmayan (int ve float) tüm alanları Listeleyelim.
query = {'price': {'$not': {'$type': ['int', 'double']}}} # int ve float (double) olmayanlar
for item in collection.find(query):
print(item)
# endregion
# region İsim alanı string olmayan tüm belgeleri bulalım.
query = {'name': {'$not': {'$type': 'string'}}}
for item in collection.find(query):
print(item)
# endregion
# region Ürün Sayısını Hesaplama
print(collection.count_documents({}))
# endregion
# region Kaç Adet Monster Bulunmaktadır.
query = {'name': {'$regex': 'monster', '$options': 'i'}}
print(collection.count_documents(query))
# endregion
# region Fiyatı ??? eşit olanları olanları listeleyelim.Ayrıca Sadece isim bilgisi ve fiyat değeri ile ekrana gelsin.
query = {'price': {'$eq': '???'}}
for item in collection.find(query, {'name': 1, 'price': 1, '_id': 0}):
print(item)
# endregion
# region Price Alanı Boş olan ürünlerin Değerini 1 olarak güncelle
result = collection.update_many(
filter={'price': {'$exists': False}}, # 'price' alanı olmayanları filtrele
update={
'$set': {
'price': 1
}
}
)
# endregion
# region Fiyatların Toplamını Bulma ($sum)
pipeline = [
{"$match": {"price": {"$type": ["int", "double"]}}},
{"$group": {"_id": None, "toplam_fiyat": {"$sum": "$price"}}}
]
result = collection.aggregate(pipeline)
for r in result:
print(f"Toplam Fiyat: {r['toplam_fiyat']}")
# endregion
# region Fiyatların Ortalamasını Bulma ($avg)
pipeline = [
{"$group": {"_id": None, "ortalama_fiyat": {"$avg": "$price"}}}
]
result = collection.aggregate(pipeline)
for r in result:
print(f"Ortalama Fiyat: {r['ortalama_fiyat']}")
# endregion
# region Fiyatların ortalamasını ve Toplamını Bulma
pipeline = [
{'$match': {'price': {'$type': ['int', 'double']}}},
{'$group': {'_id': None, 'Ortamala Fiyat Bilgisi': {'$avg': '$price'}, 'Toplam Fiyat': {'$sum': '$price'}}},
]
result = collection.aggregate(pipeline)
for item in result:
pprint(item)
# endregion
# region İsimlerinde "Monster" Geçen Ürünlerin Fiyatlarını Toplama
pipeline = [
{'$match': {'name': {'$regex': 'monster', '$options': 'i'}, # "Monster" kelimesini içeren ürünleri bul
'price': {'$type': ['int', 'double']}}},
{'$group': {'_id': None, 'Toplam Fiyat': {'$sum': '$price'}, 'Ortalama Fiyat': {'$avg': '$price'}
}}
]
result = collection.aggregate(pipeline)
for item in result:
print(item)
print(f"Toplam Fiyat (Monster Ürünler): {item['Toplam Fiyat']}")
print(f"Ortalama Fiyat (Monster Ürünler): {item['Ortalama Fiyat']}")
# endregion
# region Şehirlere göre toplam stok miktarlarını bulma
pipeline = [
{'$match': {'stock': {'$type': 'int'}}},
{'$group': {
'_id': '$country',
'Toplam Stok': {'$sum': '$stock'}
}}
]
result = collection.aggregate(pipeline)
for item in result:
print(item)
# endregion
# region USA göre toplam stok miktarlarını bulma
pipeline = [
{'$match': {
'stock': {'$type': 'int'},
'country': {'$eq': 'USA'}
}},
{'$group': {
'_id': '$country',
'Toplam Stok': {'$sum': '$stock'}
}}
]
result = collection.aggregate(pipeline)
for item in result:
print(item)
# endregion
# region Stokları olmayan ürünlere statülerini ekle
query = {'stock': {'$eq': 0}}
update = {'$set': {'status': 'PASSIVE'}}
result = collection.update_many(query, update)
print(result.modified_count)
# endregion
# region Stokları olan ürünlere statülerini ekleyelim.
query = {'stock': {'$gte': 1}}
update = {'$set': {'status': 'ACTIVE'}}
result = collection.update_many(query, update)
print(result.modified_count)
# endregion
# region Kıtalara göre toplam stok miktarlarını bulma
pipeline = [
{'$match': {'stock': {'$type': 'int'}}},
{'$group': {
'_id': '$continent',
'Toplam Stok': {'$sum': '$stock'}
}}
]
result = collection.aggregate(pipeline)
for item in result:
print(item)
# endregion
# region Toplam Ürün Sayısını Bulma ($count)
pipeline = [
{"$count": "toplam_ürün_sayısı"}
]
result = collection.aggregate(pipeline)
for r in result:
print(f"Toplam Ürün Sayısı: {r['toplam_ürün_sayısı']}")
# endregion
# region En Küçük Fiyatı Bulma ($min)
pipeline = [
{"$group": {"_id": None, "min_fiyat": {"$min": "$price"}}}
]
result = collection.aggregate(pipeline)
for r in result:
print(f"En Düşük Fiyat: {r['min_fiyat']}")
# endregion
# region En Büyük Fiyatı Bulma ($max)
pipeline = [
{"$group": {"_id": None, "max_fiyat": {"$max": "$price"}}}
]
result = collection.aggregate(pipeline)
for r in result:
print(f"En Yüksek Fiyat: {r['max_fiyat']}")
# endregion
# region En küçük fiyatlı ürünü bulma
pipeline = [
{"$match": {'price': {'$type': ['int', 'double']}}}, # Geçersiz fiyatları filtrele
{"$sort": {"price": 1}}, # Fiyatı küçükten büyüğe sırala
{"$limit": 1} # En düşük fiyatlı ürünü al
]
result = collection.aggregate(pipeline)
for r in result:
print(r)
print(f"En Düşük Fiyatlı Ürün: {r['name']}, Fiyat: {r['price']}, Ülke: {r['country']}")
# endregion
# region _id değeri 1 olan üründe country ve continent alanlarını üç alt detaya bölerek update edelim.
filter = {'_id': 1}
update = {
"$set": {
"country": {"country_name": "USA", "state": "California", "region": "Western"},
"continent": {"continent_name": "North America", "population": 579000000, "area_km2": 24709000}
}
}
result = collection.update_one(filter, update)
print(result.modified_count)
# endregion
# region _id değeri 1 olan üründe state alanını update edelim.
filter = {'_id': 1}
update = {'$set': {'country.state': 'Texas'}}
result = collection.update_one(filter, update)
print(result.modified_count)
# endregion
# region Kaç Adet Texas Eyalet Bilgisi Bulunmaktadır.
query = {'country.state': {'$regex': 'Texas', '$options': 'i'}}
print(collection.count_documents(query))
# endregion
# region Texas eyaletindeki tüm stok bilgisi
pipeline = [
{"$match": {"country.state": {"$regex": "Texas", "$options": "i"}}}, # Texas ifadesini içeren belgeleri seç
{"$group": {"_id": None, "total_stock": {"$sum": "$stock"}}} # Stock alanını topla
]
result = collection.aggregate(pipeline)
for doc in result:
print(f"Texas'taki tüm ürünlerin toplam stoku: {doc['total_stock']}")
# endregion