crypto_quant/truth_social_retriever_main.py

10 lines
216 B
Python
Raw Normal View History

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()
if __name__ == "__main__":
main()