mkovach2 / EC601_proj2

0 stars 0 forks source link

Static # of tweets returned ==> dynamic #1

Open Kellenbj opened 3 years ago

Kellenbj commented 3 years ago

Consider taking user input to allow a non static number of tweets to be returned. This way if someone uses this code they will only get back the number of tweets they desire at that time. A simple approach:

numtweets = input("How many tweets would you like analyzed?") lastTweet = tot.myOwnLast(numtweets)

To allow numtweets to be non static.

mkovach2 commented 3 years ago

good idea. I'll have to combine this functionality with the existing option, probably. I'd like to leave the code modular in that it should be usable to agents which are not users with direct command-line access. Thanks!