Spaces:
Runtime error
Runtime error
File size: 1,903 Bytes
078c1e1 25297ae 078c1e1 25297ae 078c1e1 25297ae 078c1e1 25297ae 078c1e1 25297ae 078c1e1 |
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 |
import pymongo
import os
import pandas as pd
class DBOperations:
"""
Reads news from MongoDB
"""
def __init__(self):
self.url = os.getenv('DB_URL')
self.database = "rss_news_db_cat_pred_sim_news"
self.collection = "rss_news_cat_pred_sim_news"
self.__client = None
self.__error = 0
async def __connect(self):
try:
self.__client = pymongo.MongoClient(self.url)
_ = self.__client.list_database_names()
except Exception as conn_exception:
self.__error = 1
self.__client = None
raise
async def __read(self):
try:
db = self.__client[self.database]
coll = db[self.collection]
docs = []
for doc in coll.find():
docs.append(doc)
rss_df = pd.DataFrame(docs)
except Exception as insert_err:
self.__error = 1
rss_df = pd.DataFrame({'_id': '', 'title': '', 'url': '',
'description': '', 'parsed_date': '',
'src': ''}, index=[0])
return rss_df
def __close_connection(self):
if self.__client is not None:
self.__client.close()
self.__client = None
async def read_news_from_db(self):
rss_df = pd.DataFrame({'_id': '', 'title': '', 'url': '',
'description': '', 'parsed_date': '',
'src': ''}, index=[0])
if self.url is not None:
if self.__error == 0:
await self.__connect()
if self.__error == 0:
rss_df = await self.__read()
if self.__error == 0:
print("Read Successful")
if self.__client is not None:
self.__close_connection()
return rss_df
|