Answers for "how to make a instagram report bot python"

8

python instagram bot

from instapy import InstaPy

session = InstaPy(username="<your_username>", password="<your_password>")
session.login()
session.like_by_tags(["bmw", "mercedes"], amount=5)
session.set_dont_like(["naked", "nsfw"])
session.set_do_follow(True, percentage=50)
session.set_do_comment(True, percentage=50)
session.set_comments(["Nice!", "Sweet!", "Beautiful :heart_eyes:"])
session.end()
Posted by: Guest on July-14-2020
0

how to make a instagram report bot python

import time
from webbot import *
import pyautogui

import argparse
import sys

# To parse the arguments
def getOptions(args=sys.argv[1:]):

    parser = argparse.ArgumentParser(description="This bot helps users to mass report accounts with clickbaits or objectionable material.")
    parser.add_argument("-u", "--username", type = str, default = "", help = "Username to report.")
    parser.add_argument("-f", "--file", type = str, default = "acc.txt", help = "Accounts list ( Defaults to acc.txt in program directory ).")

    options = parser.parse_args(args)

    return options


args = getOptions()

username = args.username
acc_file = args.file

if username == "" :
	username = input("Username: ")

a = open(acc_file, "r").readlines()
file = [s.rstrip()for s in a]kosdo_abdell report
Posted by: Guest on July-17-2021
8

python instagram bot

from instapy import InstaPy

session = InstaPy(username="<your_username>", password="<your_password>")
session.login()
session.like_by_tags(["bmw", "mercedes"], amount=5)
session.set_dont_like(["naked", "nsfw"])
session.set_do_follow(True, percentage=50)
session.set_do_comment(True, percentage=50)
session.set_comments(["Nice!", "Sweet!", "Beautiful :heart_eyes:"])
session.end()
Posted by: Guest on July-14-2020
0

how to make a instagram report bot python

import time
from webbot import *
import pyautogui

import argparse
import sys

# To parse the arguments
def getOptions(args=sys.argv[1:]):

    parser = argparse.ArgumentParser(description="This bot helps users to mass report accounts with clickbaits or objectionable material.")
    parser.add_argument("-u", "--username", type = str, default = "", help = "Username to report.")
    parser.add_argument("-f", "--file", type = str, default = "acc.txt", help = "Accounts list ( Defaults to acc.txt in program directory ).")

    options = parser.parse_args(args)

    return options


args = getOptions()

username = args.username
acc_file = args.file

if username == "" :
	username = input("Username: ")

a = open(acc_file, "r").readlines()
file = [s.rstrip()for s in a]kosdo_abdell report
Posted by: Guest on July-17-2021

Code answers related to "how to make a instagram report bot python"

Python Answers by Framework

Browse Popular Code Answers by Language