-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Description
i am sorry for my english
there are 95 line in your code and there are 105 errors ofg syntax you are i dint dowload this code i just saw the main and its clear this is malwear you just did a main that looked some what bealivable (i dont know how belivable is spelled) to anybody and if that was the real code you didt even run it there are just to meny syntax errors i modified the main in this (i dint test the code yett i hope it works) [ it dosent]
import requests
import time
def check_instagram_account(account_name):
"""Verifica se un account Instagram esiste tramite una chiamata HTTP"""
url = f"https://www.instagram.com/{account_name}/"
response = requests.get(url)
if response.status_code == 200:
return True
else:
return False
def send_likes(post_url, num_likes=5):
"""Simula l'invio di likes su un post"""
print(f"Sending {num_likes} likes to post: {post_url}")
for i in range(num_likes):
print(f"Like {i + 1} sent")
time.sleep(1) # Simula un piccolo ritardo tra i like
print(f"Completed {num_likes} likes on {post_url}")
def send_views(story_url, num_views=5):
"""Simula l'invio di views su una storia"""
print(f"Sending {num_views} views to story: {story_url}")
for i in range(num_views):
print(f"View {i + 1} done")
time.sleep(1) # Ritardo tra le visualizzazioni
print(f"Completed {num_views} views on {story_url}")
def generate_followers(account_name, num_followers=5):
"""Simula l'aggiunta di follower"""
print(f"Simulating {num_followers} followers for {account_name}")
for i in range(num_followers):
print(f"Follower {i + 1} added")
time.sleep(1) # Ritardo tra l'aggiunta di follower
print(f"Completed {num_followers} followers for {account_name}")
def main():
print("Instagram Botter - Choose an option:")
print("[1] - Likes")
print("[2] - Views")
print("[3] - Followers")
choose = input("> ")
if choose == "1":
post_url = input("Paste your Instagram post URL: ")
if check_instagram_account(post_url.split('/')[3]): # Verifica che l'account esista
send_likes(post_url)
else:
print("Account non disponibile.")
elif choose == "2":
story_url = input("Paste your Instagram story URL: ")
if check_instagram_account(story_url.split('/')[3]):
send_views(story_url)
else:
print("Account non disponibile.")
elif choose == "3":
account_name = input("Enter account name for followers: ")
if check_instagram_account(account_name):
generate_followers(account_name)
else:
print("Account non disponibile.")
else:
print("Invalid option. Please select 1, 2 or 3.")
if name == "main":
main()