Skip to content

Commit 8045d0b

Browse files
committed
chore: bump dependencies
1 parent b16cc9a commit 8045d0b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

requirements.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
requests ~= 2.22
2-
tqdm ~= 4.32
3-
tweepy ~= 3.7
1+
requests ~= 2.31
2+
tqdm ~= 4.66
3+
tweepy ~= 4.14

src/parser.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -100,10 +100,10 @@ def get_medias(auth: Dict[str, str], user_id: str, include_retweets: bool, image
100100
'retweets': 0,
101101
'media': []
102102
}
103-
capi = api.favorites if likes else api.user_timeline
103+
capi = api.get_favorites if likes else api.user_timeline
104104
kwargs = {"include_entities": True} if likes else {}
105105
pbar = tqdm(desc='Resolving', unit=' tweets')
106-
for tweet in tweepy.Cursor(capi, id=user_id, include_rts=include_retweets, tweet_mode='extended', since_id=since_id, max_id=until_id, **kwargs).items():
106+
for tweet in tweepy.Cursor(capi, user_id=user_id, include_rts=include_retweets, tweet_mode='extended', since_id=since_id, max_id=until_id, **kwargs).items():
107107
if since is not None and tweet.created_at < since:
108108
break
109109
if until is not None and tweet.created_at > until:

0 commit comments

Comments
 (0)