2025-10-20 10:37:41 +00:00
|
|
|
from core.media.truth_social_retriever import TruthSocialRetriever
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
|
truth_social_retriever = TruthSocialRetriever()
|
|
|
|
|
truth_social_retriever.get_user_posts()
|
2025-10-21 09:49:04 +00:00
|
|
|
# json_file_name = r"./output/media/truth_social/realDonaldTrump/realDonaldTrump_20251021172241.json"
|
|
|
|
|
# truth_social_retriever.send_message_by_json_file(json_file_name)
|
2025-10-20 10:37:41 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
|
main()
|