Я новичок в программировании, и у меня проблемы с кодом из Tweepy do c. process_page
отображается как ошибка Unresolved Reference
в моей среде разработки Pycharm. Как мне это исправить? Спасибо
# Only iterate through the first 200 statuses
for status in tweepy.Cursor(API.user_timeline).items(200):
process_status(status)
# Only iterate through the first 3 pages
for page in tweepy.Cursor(API.user_timeline).pages(3):
process_page(page)