Last active
March 5, 2021 19:37
-
-
Save andkon/3edd038c12c7f0451573fed550ee6e3d to your computer and use it in GitHub Desktop.
Archive all posts on instagram
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from instagram_private_api import Client, ClientCompatPatch | |
from instagram_private_api.errors import ClientError | |
username = "" | |
password = "" | |
api = Client(username, password) # have to disable 2fa | |
posts = [] | |
user_feed = api.user_feed(api.authenticated_user_id, max_id="") | |
posts.extend(user_feed['items']) | |
while user_feed['more_available'] == True: | |
user_feed = api.user_feed(api.authenticated_user_id, max_id=user_feed['next_max_id']) | |
posts.extend(user_feed['items']) | |
print(len(posts)) | |
for post in posts: | |
try: | |
api.media_only_me(post['id'], post['media_type']) | |
except ClientError as e: | |
print(f"Error: {e}, for {post['id']}") | |
continue | |
if post['caption']: | |
print(f"Archived {post['caption']['text']}") | |
else: | |
print(f"Archived post {post['id']}") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
instagram-private-api @ git+https://[email protected]/ping/instagram_private_api.git@1d70e99bc11591161b0cd71cff3f0c08cd04b34f |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment