-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_mongo.py
38 lines (28 loc) · 936 Bytes
/
test_mongo.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
"""
import pymongo
client = pymongo.MongoClient("mongodb+srv://meph:[email protected]/resultados-db?retryWrites=true&w=majority")
res_db = client["resultados-db"]
print(res_db.list_collection_names())
"""
"""
from repository.citizenRepository import CitizenRepository
repoCitizen = CitizenRepository()
"""
"""
from repository.matchRepository import MatchRepository
from models.match import Match
repoMatch = MatchRepository()
match1 = Match(
{
"nombre": "partido azul",
"lema": "El liberalismo es el respeto irrestrico del proyecto de vida del prójimo, basado en el principio de no agresión (PNA) y en defensa del derecho a la vida, la libertad y la propiedad privada... "
}
)
repoMatch.save(match1)
"""
"""
from repository.matchRepository import MatchRepository
from models.match import Match
repoMatch = MatchRepository()
repoMatch.delete("636c0c8ed673ded5a16e80b4")
"""