iSarabjitDhiman / TweeterPy

TweeterPy is a python library to extract data from Twitter. TweeterPy API lets you scrape data from a user's profile like username, userid, bio, followers/followings list, profile media, tweets, etc.
MIT License
164 stars 29 forks source link

Pagination: .get on NoneType #87

Closed maffeo886 closed 1 week ago

maffeo886 commented 3 weeks ago

Hello,

I get the following error message

2024-10-30 15:54:09,666 [ERROR] :: descriptor 'get' for 'dict' objects doesn't apply to a 'NoneType' object Traceback (most recent call last): File "C:\Users\Administrator\AppData\Local\Programs\Python\Python312\Lib\site-packages\tweeterpy\tweeterpy.py", line 78, in _handle_pagination data = [item for item in reduce( ^^^^^^^ TypeError: descriptor 'get' for 'dict' objects doesn't apply to a 'NoneType' object

Im using get_user_data, get_followers and get_tweets from a session. Did anyone encounter this issue as well?