Skip to content
develop
Go to file
Code

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

InstAPI

Code Style Contributions License Build Status codecov

Instapi

InstAPI - comfortable and easy to use Python's library for interaction with Instagram.

Installation

  1. Download InstAPI from this repository.
  2. Run pip install -e [PATH to directory with InstAPI] in console.
  3. Done!

Usage

Example how to like all feeds for user

from instapi import bind
from instapi import User

bind('your_username_here', 'your_password_here')

# Get user profile by username
instagram_profile = User.from_username('username')

# Like all posts
for feed in instagram_profile.iter_feeds():
  feed.like()

Contribute

Contributions are always welcome!

You can’t perform that action at this time.