The Stream API provides access to tweets in real-time. Streams can be filtered based on keywords, language, location, and more. Here's a simple example to track mentions of the word "tweepy":
#set up a new class using tweepy.StreamListener
class SimpleListener(tweepy.StreamListener):
...