Change Example Hashtag in Codesnippets

This commit is contained in:
Leonard Bogdonoff
2019-10-13 13:47:44 -04:00
committed by Alexander Graf
parent 3226c43a98
commit cf293ce312
2 changed files with 4 additions and 4 deletions

View File

@@ -2,13 +2,13 @@ import instaloader
L = instaloader.Instaloader()
posts = L.get_hashtag_posts('milfgarden')
posts = L.get_hashtag_posts('urbanphotography')
users = set()
for post in posts:
if not post.owner_profile in users:
L.download_post(post, '#milfgarden')
L.download_post(post, '#urbanphotography')
users.add(post.owner_profile)
else:
print("{} from {} skipped.".format(post, post.owner_profile))