Interseção e união de termos de pesquisa usando Python Tweepy

Gostaria de obter os tweets que contêm 'love' e / ou '#hate' usando o Python Tweepy. Mas, usando meu código atual como abaixo, ele retorna apenas o primeiro termo (ou seja, 'amor'). Eu venho tentando há dias depurar e ler a documentação do Tweepy / Twitter sem sucesso. Conselho por favor.

import tweepy
import time

ckey = ""
csecret = ""
atoken = ""
asecret = ""

OAUTH_KEYS = {'consumer_key':ckey, 'consumer_secret':csecret,
    'access_token_key':atoken, 'access_token_secret':asecret}
auth = tweepy.OAuthHandler(OAUTH_KEYS['consumer_key'], OAUTH_KEYS['consumer_secret'])
api = tweepy.API(auth)

for tweet in tweepy.Cursor(api.search, q=('love' or '#hate'), since='2014-09-15', until='2014-09-16').items(500): 
    try:

        print "Tweet created:", tweet.created_at
        print "Tweet:", tweet.text.encode('utf8')

        counter += 1

    except IOError:
        time.sleep(60)
        continue