cidar_human_eval / database.py
deema
cert
c3e3539
raw
history blame
1.31 kB
from pymongo.mongo_client import MongoClient
# from pymongo.server_api import ServerApi
from urllib.parse import quote_plus
import ssl
password = quote_plus('cidar@2024$')
uri = f"mongodb+srv://deemaa2:{password}@cluster0.qjruxcb.mongodb.net/?retryWrites=true&w=majority"
# Create a new client and connect to the server
# client = MongoClient(uri, server_api=ServerApi('1'))
client = MongoClient(uri, ssl_cert_reqs=ssl.CERT_NONE)
# Specify the database and collection
db = client.your_database_name
collection = db.your_collection_name
def save_response(response_data):
"""Saves a response to the MongoDB collection."""
try:
# Insert the response data into the collection
collection.insert_one(response_data)
return "سجلنا ردك، ما قصرت =)"
except Exception as e:
print(f"An error occurred: {e}")
exit(0)
def read_responses(filter_query=None):
"""Reads responses from the MongoDB collection based on an optional filter."""
try:
if filter_query is None:
filter_query = {} # An empty query will return all documents
responses = collection.find(filter_query)
return list(responses) # Convert cursor to list
except Exception as e:
print(f"An error occurred: {e}")
return []