Skip to main content

Automated login attempts for Instagram.

Project description

inpass 1.0.1

inpass is a Python package designed for automated login attempts on Instagram. This package can help automate the login process using multiple passwords, handle CAPTCHA challenges, and track URL changes during login attempts.

Features

  • Automated login attempts for Instagram.
  • Handles CAPTCHA challenges by pausing and allowing manual resolution.
  • Tracks URL changes during the login process.
  • Command-line interface (CLI) and programmatic usage supported.

Installation

You can install the package using pip:

pip install inpass

Usage

Command-line Interface

  • You can use the inpass package directly from the command line. Here’s how:
inpass --username your_username --password-file passwords.txt

Programmatic Usage

  • You can also use the inpass package programmatically in your Python scripts. Below is an example:
import time
import inpass

username = "your_username"
password_file = "passwords.txt"

with open(password_file, 'r') as file:
    passwords = file.read().splitlines()

for password in passwords:
    if inpass.login(username, password):
        print(f"Password match: {password}")
        break
    else:
        print(f"Password {password} not matching")
    time.sleep(1)
else:
    print("All passwords failed.")

License

This project is licensed under the MIT License. See the LICENSE file for details.

Acknowledgments

Thank you to all the contributors and users who have supported the development of this project.

Disclaimer

This package is intended for educational and research purposes only. The author is not responsible for any misuse of this software.

  • Thank you for using inpass. We hope it helps you automate your login attempts efficiently.

Project details


Download files

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

Source Distribution

inpass-1.0.1.tar.gz (4.1 kB view hashes)

Uploaded Source

Built Distribution

inpass-1.0.1-py3-none-any.whl (4.7 kB view hashes)

Uploaded Python 3

Supported by

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