я был извлечен твитами с помощью tweepy .. он показывает ошибку
я использую эту команду .. поскольку я новичок, я не знаю много .. пожалуйста, опишите код с комментариями.
import tweepy auth = tweepy.OAuthHandler (consumer_key, consumer_secret) auth.set_access_token (access_token, access_token_secret)
api = tweepy.API(auth)
public_tweets = api.home_timeline()
good_tweet_ids = [555175389383774208, 555174725136437248]
for tweet in public_tweets:
if tweet.id in good_tweet_ids:
print "".join(x for x in tweet.text if ord(x) < 128)
, показывающий эту ошибку:
File "", строка 2 auth.set_access_token (access_token (access_token (access_token (access_token), access_token_secret) ^ IndentationError: неожиданный отступ
импорт tweepy auth = tweepy.OAuthHandler (consumer_key, consumer_secret) auth.set_access_token (access_token, access_token_secret)
api = tweepy.API(auth)
public_tweets = api.home_timeline()
good_tweet_ids = [555175389383774208, 555174725136437248]
for tweet in public_tweets:
if tweet.id in good_tweet_ids:
print "".join(x for x in tweet.text if ord(x) < 128)
ожидаемый «твит», строка 2 auth.set_access_token (access_token, access_token_secret) ^ IndentationError: неожиданный отступ