This commit is contained in:
2022-01-07 18:07:25 -08:00
parent a9590c0dce
commit bab7810cd3
22 changed files with 114606 additions and 1 deletions

View 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()