10 lines
216 B
Python
10 lines
216 B
Python
|
|
from core.media.truth_social_retriever import TruthSocialRetriever
|
||
|
|
|
||
|
|
|
||
|
|
def main():
|
||
|
|
truth_social_retriever = TruthSocialRetriever()
|
||
|
|
truth_social_retriever.get_user_posts()
|
||
|
|
|
||
|
|
|
||
|
|
if __name__ == "__main__":
|
||
|
|
main()
|