Simple Instagram Accounts Controller Using Selenium
Project description
instasele
instasele Simple Library To Control Instagram Accounts.
Library Information
Author : Al-Saeed Hassan
Library : instasele
License: MIT License
Release: 28/08/2024
Version : 0.0.5
If You Have Any Problem Issues
Featurs:
- Available:
- Login
- Save Cookies File
- Follow a user
- Like a post
- Add a comment on a post
- Comming:
- Send DMs to users
- Upload posts
- Save posts
- View user stories
Usage
Login into an Instagram
account
Using credintials
from instasele import Client
username = "account_username"
password = "account_password"
client = Client()
client.login(username, password, save_login=True)
Cookies will be saved in cookies/account_username.json
Using Cookies
from instasele import Client
username = "account_username"
client = Client()
client.login(username, use_cookies=True)
(opptional use_cookies). (opptional cookies_file). (opptional headless).
Actions
Like
from instasele import Client
username = "account_username"
password = "account_password"
client = Client()
login_response = client.login(username, password)
if response["ok"]:
post_url = "instagram_post_url"
client.like(post_url)
Comment
from instasele import Client
username = "account_username"
password = "account_password"
client = Client()
login_response = client.login(username, password)
if response["ok"]:
post_url = "instagram_post_url"
client.comment(post_url, "comment")
Follow
from instasele import Client
username = "account_username"
password = "account_password"
client = Client()
login_response = client.login(username, password)
if response["ok"]:
account_url = "instagram_account_url"
client.follow(account_url)
Installation
instasele Available Now On PyPi
python -m pip install instasele
Note: This is an unofficial library, created and maintained by Al-Saeed Hassan. It is not supported or endorsed by Instagram.
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
instasele-1.0.0.tar.gz
(8.7 kB
view details)
Built Distribution
instasele-1.0.0-py3-none-any.whl
(10.7 kB
view details)
File details
Details for the file instasele-1.0.0.tar.gz
.
File metadata
- Download URL: instasele-1.0.0.tar.gz
- Upload date:
- Size: 8.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0cc1133c2fd53b8d8b332bd3969caba807f1ce8aebacf7f7c359422a45166bb8 |
|
MD5 | 1a60ef366aecfc24ec253b270afd05f1 |
|
BLAKE2b-256 | 5b7711486d8beca760c70b1be777c25e1e565d5dfdd8ffe048f3831109aae00c |
File details
Details for the file instasele-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: instasele-1.0.0-py3-none-any.whl
- Upload date:
- Size: 10.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ddffc460384ddd75ad98583a2afbb8e187143c58220da6bece9a50a5d70e62c9 |
|
MD5 | 01dc60659d299f865c89ce9d0d97e6ad |
|
BLAKE2b-256 | 0b5b56cbc9180a7126b0e735c7218703feaaf204ef9f54a0a37b0d38bf75d434 |