194_top_x_of_user example: Fix sort order
This commit is contained in:
parent
a88316224b
commit
75a729781d
@ -9,7 +9,9 @@ X_percentage = 10 # percentage of posts that should be downloaded
|
|||||||
L = Instaloader()
|
L = Instaloader()
|
||||||
|
|
||||||
profile = Profile.from_username(L.context, PROFILE)
|
profile = Profile.from_username(L.context, PROFILE)
|
||||||
posts_sorted_by_likes = sorted(profile.get_posts(), key = lambda p: p.likes + p.comments)
|
posts_sorted_by_likes = sorted(profile.get_posts(),
|
||||||
|
key=lambda p: p.likes + p.comments,
|
||||||
|
reverse=True)
|
||||||
|
|
||||||
for post in islice(posts_sorted_by_likes, ceil(profile.mediacount * X_percentage / 100)):
|
for post in islice(posts_sorted_by_likes, ceil(profile.mediacount * X_percentage / 100)):
|
||||||
L.download_post(post, PROFILE)
|
L.download_post(post, PROFILE)
|
||||||
|
Loading…
Reference in New Issue
Block a user