File size: 1,017 Bytes
b91146d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5097cc9
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
from pymongo import MongoClient
from datetime import datetime
from dotenv import load_dotenv
import os

load_dotenv()
MONGO_URI = os.getenv('MONGO_URI')
def setup_mongodb():
    """Initialize MongoDB connection and create collections with indexes"""
    client = MongoClient(MONGO_URI)
    db = client["novascholar_db"]
    
    # Create indexes for polls collection
    db.polls.create_index([("session_id", 1), ("status", 1)])
    db.polls.create_index([("course_id", 1)])
    
    # Create unique index for poll_responses to prevent duplicate votes
    db.poll_responses.create_index(
        [("poll_id", 1), ("student_id", 1)],
        unique=True
    )
    
    return "Database setup completed successfully"

def print_all_polls():
    """Print all polls in the database"""
    client = MongoClient(MONGO_URI)
    db = client["novascholar_db"]
    
    polls = db.polls.find()
    for poll in polls:
        print(poll)

if __name__ == "__main__":
    print(print_all_polls())