crypto_quant/truth_social_retriever_main.py

12 lines
393 B
Python

from core.media.truth_social_retriever import TruthSocialRetriever
def main():
truth_social_retriever = TruthSocialRetriever()
truth_social_retriever.get_user_posts()
# json_file_name = r"./output/media/truth_social/realDonaldTrump/realDonaldTrump_20251021172241.json"
# truth_social_retriever.send_message_by_json_file(json_file_name)
if __name__ == "__main__":
main()