This commit is contained in:
2026-01-08 22:42:03 +01:00
parent 715be97289
commit e86e50ff8a
2 changed files with 1 additions and 4 deletions

View File

@@ -1,10 +1,8 @@
from __future__ import annotations from __future__ import annotations
from typing import TYPE_CHECKING from typing import TYPE_CHECKING
import asyncio import asyncio
from datetime import datetime
import gc import gc
import traceback import traceback
import tracemalloc
from Classifier.classifyHelper import classify_all from Classifier.classifyHelper import classify_all
from Database.x_classes import DownloadMode from Database.x_classes import DownloadMode
@@ -62,7 +60,6 @@ async def download_loop(botData: RuntimeBotData):
for tweet in new_posts: #posts should arrive here in chronological order for tweet in new_posts: #posts should arrive here in chronological order
await download_post(artist, tweet, botData) await download_post(artist, tweet, botData)
gc.collect() gc.collect()
print(tracemalloc.get_traced_memory())
results[artist.name] = new_posts_count results[artist.name] = new_posts_count
if artist.download_mode == DownloadMode.DOWNLOAD_ALL: if artist.download_mode == DownloadMode.DOWNLOAD_ALL:

View File

@@ -49,7 +49,7 @@ async def GetTweetMediaUrls(tweet : Tweet):
async def DownloadMedia(post_id, account_id, account_name, url_list : list, session) -> list[DownloadedMedia]: async def DownloadMedia(post_id, account_id, account_name, url_list : list, session) -> list[DownloadedMedia]:
result : list[DownloadedMedia] = [] result : list[DownloadedMedia] = []
path = f"{Global_Config("x_download_path")}{account_id}" path = f"{Global_Config["x_download_path"]}{account_id}"
os.makedirs(path, exist_ok=True) os.makedirs(path, exist_ok=True)
for idx, file_url in enumerate(url_list): for idx, file_url in enumerate(url_list):