instagrapi
instagrapi copied to clipboard
🔥 The fastest and powerful Python library for Instagram Private API 2024
`#` here is my code client = Client() client.load_settings('files/dumps.json') client.login(username='', password='') client.get_timeline_feed() print('logged in') user = 'useraccount' id = client.user_id_from_username(user) user_story = client.user_stories(user_id=id) print(user_story) for story in user_story : info...
Hi, I'm testing this module to get all comments of an specific post like this: `python3 file.py > out.txt` It takes time which is normal, but when it ends, it...
As from the title, the `fbsearch_suggested_profiles()` function raises "Not Elegible For Chaining" Exception. Here is how to reproduce the bug: ``` import instagrapi from instagrapi import Client client = Client()...
1) I converted the user agent to iphone, no problem so far. How should I fix the header for iPhone? I couldn't find the header key on the internet, it's...
Hi, this is my code: ``` from pathlib import Path from PIL import Image from instagrapi import Client import json image = Image.open("picture.jpg") image = image.convert("RGB") new_image = image.resize((1080, 1080))...
**Describe the bug** When I try to upload a story using an example from documentation I get this 500 Server Error. **To Reproduce** Copy the 3rd example from https://adw0rd.github.io/instagrapi/usage-guide/story.html **Traceback**...
**Feature** The ability to add a "track" / sound to a reel for when it gets posted **Describe the solution you'd like** You can get the track https://adw0rd.github.io/instagrapi/usage-guide/track.html but there...
I log in to an Instagram account using the login_by_session_id method(with a saved session). When I try to make a direct_message_delete request with a valid thread and message id(I'm the...
When using the client.user_followers(userid) the api doesnt return all the followers. example: I have 836 followers on my account, but when trying to get a list I recive only a...