latest
This commit is contained in:
9
tweetbackup/python/main.py
Normal file
9
tweetbackup/python/main.py
Normal file
@@ -0,0 +1,9 @@
|
||||
#!/usr/bin/env python3
|
||||
from twitter_scraper import get_tweets
|
||||
|
||||
def main():
|
||||
for tweet in get_tweets('twitter', pages=1):
|
||||
print(tweet['username'], ": ", tweet['text'])
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
Reference in New Issue
Block a user