def insert_data(self,articles):
		self.cursor.execute("SELECT date('now')")
		todays_date = self.cursor.fetchall()[0][0]
		rows = []
		for article in articles:
			
			rows.append([article,'fivethirtyeight',str(articles[article]),todays_date])
		
		Sqlite_Helper.insert_rows(self,4,rows)