Bắt đầu ngayBắt đầu miễn phí

Collecting data on keywords

Now that we've set up the authentication, we can begin to collect Twitter data. Recall that with the Streaming API, we will be collecting real-time Twitter data based on either a sample or filtered by a keyword.

In our example, we will collect data on any tweet mentioning #rstats or #python in the tweet text, username, or user description with the filter endpoint.

The SListener module has already been defined and imported for you.

Bài tập này là một phần của khóa học

Analyzing Social Media Data in Python

Xem khóa học

Hướng dẫn bài tập

  • Import Stream from tweepy.
  • Set keywords_to_track to a list containing #rstats and #python.
  • Pass the auth and listen objects to Stream.
  • Set the keyword argument track equals to keywords_to_track.

Bài tập tương tác thực hành trực tiếp

Hãy thử làm bài tập này bằng cách hoàn thành đoạn mã mẫu này.

from ____ import ____

# Set up words to track
keywords_to_track = ____

# Instantiate the SListener object 
listen = SListener(api)

# Instantiate the Stream object
stream = Stream(____, ____, access_token, access_token_secret)

# Begin collecting data
stream.filter(track = ____)
Chỉnh sửa và Chạy Mã