A simple Instagram's web API library
Project description
Instpector
A simple Instagram's web API library written in Python. Supports login with two-factor authentication enabled. No selenium or webdriver required.
Installation
pip install instpector
Sample usage
from instpector import Instpector, endpoints
instpector = Instpector()
instpector.login("my_username", "my_password")
profile = endpoints.factory.create("profile", instpector)
followers = endpoints.factory.create("followers", instpector)
insta_profile = profile.of_user("some_username")
# Loop through all followers
for follower in followers.of_user(insta_profile.id):
print(follower.username)
instpector.logout()
Using 2FA
For login in using two-factor authentication, generate your 2fa key once on Instagram's app and provide the code when logging in with instpector
. The following example uses pytop
to demonstrate the usage:
from pyotp import TOTP
from instpector import Instpector, endpoints
instpector = Instpector()
totp = TOTP("my_2fa_key") # Input without spaces
# Login into Instagram's web
instpector.login("my_username", "my_password", totp.now())
Examples
Check out more examples here.
Endpoints
- Followers
- Following
- Timeline
- Profile
- Story Reel
- Story
More to come
API
Classes
Instpector
Method | Details |
---|---|
login(user, password, two_factor_code=None) | Login to an Instagram account. If your account is 2FA protected provide the 2FA code as in the provided example. |
logout() | Logouts from an Instagram account |
session() | Returns the current session used by instpector |
EndpointFactory
Method | Details |
---|---|
create(endpoint_name, instpector_instance) | Creates and returns an endpoint instance based on the provided name. Available endpoint names are: "followers" , "following" , "profile" , "timeline" , "story_reel" and "story" |
Endpoints
Profile
Gets the profile of any public or friend user account.
Method | Details |
---|---|
of_user(username) | Returns a TProfile instance for the provided username. |
Followers
Endpoint for accessing the follower list of any public or friend user account.
Method | Details |
---|---|
of_user(user_id) | Returns a generator of TUser instances with all followers. Note the method receives a user id and not a username. To get the user id use the Profile endpoint. |
Following
Endpoint for accessing the followees list of any public or friend user account.
Method | Details |
---|---|
of_user(user_id) | Returns a generator of TUser instances with all followees. Note the method receives a user id and not a username. To get the user id use the Profile endpoint. |
Timeline
Endpoint for accessing the timeline of any public or friend account.
Method | Details |
---|---|
of_user(user_id) | Returns a generator of TTimelinePost instances with all timeline posts. Note the method receives a user id and not a username. To get the user id use the Profile endpoint. |
download(timeline_post, only_image=False, low_quality=False) | Downloads and save the available resources (image and video) for the provided TTimelinePost . The file name convention is ownerid_resourceid.extension and saved in the execution directory. If low_quality is True the resource will be the downloaded with the lowest size available (only for image). If only_image is True a video file resource won't be downloaded. |
like(timeline_post) | Likes a timeline post (TTimelinePost ). |
unlike(timeline_post) | Unlikes a timeline post (TTimelinePost ). |
StoryReel
Endpoint for accessing the story reel (stories) of any public or friend user account.
Method | Details |
---|---|
of_user(user_id) | Returns a generator of TStoryReelItem instances with all stories. Note the method receives a user id and not a username. To get the user id use the Profile endpoint. |
download(story_item, only_image=False, low_quality=False) | Downloads and save the available resources (image and video) for the provided TStoryReelItem . The file name convention is ownerid_resourceid.extension and saved in the execution directory. If low_quality is True the resource will be the downloaded with the lowest size available. If only_image is True a video file resource won't be downloaded. |
Story
Endpoint for accessing the story details of a story reel item. This endpoint is only available for stories posted by the current logged in user.
Method | Details |
---|---|
viewers_for(story_id) | Returns a generator of TStoryViewer instances with all viewers of the provided story id. |
Types
TUser
Field | Type | Details |
---|---|---|
id | string |
The Instagram Id of the user |
username | string |
The user's name |
full_name | string |
The full name of the user |
is_private | bool |
A flag to show if the user account is private |
TProfile
Field | Type | Details |
---|---|---|
id | string |
The Instagram Id of the user |
username | string |
The user's name |
biography | string |
The biography of the user |
is_private | bool |
A flag to show if the user account is private |
followers_count | integer |
The follower count of the user |
following_count | integer |
The following count of the user |
TTimelinePost
Field | Type | Details |
---|---|---|
id | string |
The Instagram Id of the user |
owner | string |
The owner account Instagram Id |
timestamp | integer |
The timestamp of the post |
is_video | bool |
A flag to know if the story is a video |
like_count | integer |
The like count of the post |
comment_count | integer |
The comment count of the post |
display_resources | list |
A list of image URLs associated with the post |
video_url | string |
The video URL (if available) associated with the post |
TStoryReelItem
Field | Type | Details |
---|---|---|
id | string |
The Instagram Id of the story |
owner | string |
The owner account Instagram Id |
timestamp | integer |
The timestamp of the story |
expire_at | integer |
The expiration timestamp of the story |
audience | string |
The type of audience of the story. If public the value is MediaAudience.DEFAULT , if private the value is MediaAudience.BESTIES |
is_video | bool |
A flag to know if the story is a video |
view_count | integer |
The view count of the story. The count is only available for stories posted by the currently logged in user. Other accounts will have a count equal to 0 . |
display_resources | list |
A list of image URLs associated with the story |
video_resources | list |
A list of video URLs associated with the story |
TStoryViewer
Field | Type | Details |
---|---|---|
id | string |
The Instagram Id of the story viewer |
username | string |
The user name of the viewer |
Development dependencies
- requests
Tests
-
Create a
pytest.ini
file with the sample contents ofpytest.sample.ini
in thetests
directory. -
Add your account information.
-
Run with
pytest
:
(env)$ pytest -qs tests
Disclaimer
This tool is not affiliated with, authorized, maintained or endorsed by Instagram or any of its affiliates or subsidiaries. Use at your own risk.
License
Licensed under MIT License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.