This commit is contained in:
MuslemRahimi 2025-01-10 20:04:36 +01:00
parent 1855f5c878
commit c56bd4a42e
2 changed files with 2 additions and 3 deletions

View File

@ -161,7 +161,6 @@ async def get_endpoint(session, symbol, con, semaphore):
print(f"Done processing {symbol}")
with open(f"json/wiim/company/{symbol}.json", 'w') as file:
ujson.dump(res_list, file)
print(res_list)
else:
check_existing_file(symbol)

View File

@ -284,7 +284,7 @@ def run_tracker():
week = datetime.today().weekday()
if week <= 4:
scripts = [
"cron_cramer_tracker.py",
#"cron_cramer_tracker.py",
#"cron_lobbying_tracker.py",
#"cron_sentiment_tracker.py",
"cron_insider_tracker.py",
@ -390,7 +390,7 @@ schedule.every(7).minutes.do(run_threaded, run_one_day_price).tag('one_day_price
schedule.every(20).minutes.do(run_threaded, run_tracker).tag('tracker_job')
schedule.every(15).minutes.do(run_threaded, run_market_moods).tag('market_moods_job')
schedule.every(30).minutes.do(run_threaded, run_market_moods).tag('market_moods_job')
schedule.every(10).minutes.do(run_threaded, run_earnings).tag('earnings_job')
#schedule.every(4).hours.do(run_threaded, run_share_statistics).tag('share_statistics_job')