I would like to get the tweets that either contain \'love\' and/or \'#hate\' using Python Tweepy. But using my current code as below, it only returns the first term (i.e. \'love
From looking at the twitter API documentation, the 'or' should be capitalized and should be inside the single quotes:
q = ('love OR #hate')
https://dev.twitter.com/rest/public/search