9 lines
214 B
Python
9 lines
214 B
Python
from app import fact_service, groupme
|
|
|
|
if __name__ == '__main__':
|
|
# Get Groupme api token to post with
|
|
groupme_client = groupme.get_client()
|
|
|
|
# Get Random Fact
|
|
fact = fact_service.get_random_fact()
|