Skip to main content

Instagram client built with Python 3.8 and the Selenium package.

Project description

instaclient

instaclient is a Python library for accessing Instagram's features. With this library you can create Instagram Bots with ease and simplicity. The InstaClient takes advantage of the selenium library to excecute tasks which are not allowed in the Instagram Graph API (such as sending DMs).

The only thing you need to worry about is to spread your requests throughout the day to avoid reaching Instagram spam limits.

Disclaimer: Please note that this is a research project. I am by no means responsible for any usage of this tool. Use it on your behalf. I'm also not responsible if your accounts get banned due to the extensive use of this tool.

Table of Contents

  1. Current Features
  2. Installation
  3. Usage
  4. Contributing
  5. Help - Community
  6. Credits
  7. License

Current Features

  • Scrape a user's followers
  • Follow a user
  • Unfollow a user
  • Send DMs to users
  • Search posts by tag
  • Like a users latest posts (max 15 for now - not working yet)
  • Get a users image media (not working yet)

Installation

Use the package manager pip to install instaclient.

pip install instaclient

To update the package:

pip install -U instaclient

Usage

CREATE THE CLIENT

from instaclient import InstaClient
from instaclient.errors import *

# Create a instaclient object
client = InstaClient() # Only the ChromeDriver is available at the moment

LOGIN INTO INSTAGRAM

from instaclient.errors import *

try:
    client.login(username=username, password=password) # Go through Login Procedure
except VerificationCodeNecessary:
    # This error is raised if the user has 2FA turned on.
    code = input('Enter the 2FA security code generated by your Authenticator App or sent to you by SMS')
    client.input_verification_code(code)
except SuspisciousLoginAttemptError as error:
    # This error is reaised by Instagram
    if error.mode == SuspisciousLoginAttemptError.EMAIL:
        code = input('Enter the security code that was sent to you via email: ')
    else:
        code = input('Enter the security code that was sent to you via SMS: ')
    client.input_security_code(code)

SEND A DIRECT MESSAGE

result = client.send_dm('username', 'Message to send') # send a DM to a user

Make sure to distrubute your client.send_dm() requests over a period of time to avoid reaching Instagram's spam limits.

GET A USER'S FOLLOWERS

followers = client.scrape_followers(user='username')
# Get first 2000 followers of the user, returning a callback every 15 followers (default callback is a terminal print statement)

The client.scrape_followers() method can take a lot of time depending on the amount of followers you want to scrape.

This method might be updated in the near future to cache scraped data in a SQLite database or to scrape the followers in a separate thread with a queue.

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. Please make sure to update tests as appropriate.

Help Community

You can join this Telegram Group to ask questions about the instabot's functionalities or to contribute to the package!

Credits

AUTHORS

License

MIT

Project details


Release history Release notifications | RSS feed

This version

1.9.5

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

instaclient-1.9.5.tar.gz (16.2 kB view details)

Uploaded Source

File details

Details for the file instaclient-1.9.5.tar.gz.

File metadata

  • Download URL: instaclient-1.9.5.tar.gz
  • Upload date:
  • Size: 16.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for instaclient-1.9.5.tar.gz
Algorithm Hash digest
SHA256 79a4fd0c1fcbd2e395de23fe45c56c1698069a47e9bf82a9576e336005f5aa43
MD5 db9563ec58d715b43c03ac87741499d4
BLAKE2b-256 f9f8d6d8080146c395b0427f764cc4f9c243df316dbb269c1c51ec4bf9751e42

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page