import json import datetime import os.path from classes.YahooArticleGetter import YahooArticleGetter os.chdir(os.path.dirname(os.path.abspath(__file__))) ######################################## # Create YahooArticleGetter ######################################## fb_config = json.load(open('../configs/facebook.json')) tw_config = json.load(open('../configs/twitter.json')) ya_getter = YahooArticleGetter(fb_config, tw_config) # Update article stats for articles published from 7 to 2 days ago. start_time = datetime.datetime.now() ya_getter.update_article_stats(7, (7, 2)) end_time = datetime.datetime.now() # Log execution script_name = os.path.basename(__file__).replace('.py', '') duration = end_time - start_time ya_getter.db_model.add_log_exec(script_name, ya_getter.exec_error, start_time, end_time, duration) print('>>>>Script duration: {0}'.format(str(duration)))
######################################## # Imports ######################################## from classes.YahooArticleGetter import YahooArticleGetter ######################################## # Create YahooArticleGetter ######################################## ya_getter = YahooArticleGetter() # Update article stats. X ... posts from last X days. ya_getter.update_article_stats(14)