pythontester192 / LIKE4LIKE-BOT-USING-PYTHON

Use This Simple Python BOT That Automates like4like.org to Gain Free Credits
72 stars 24 forks source link

DISABLED LIKE4LIKE ACCOUNT #15

Open chuplaktiktoker opened 1 year ago

chuplaktiktoker commented 1 year ago

Like4like disabled my like4like account. maybe because of the bot ? what do u think guys

SwampSticky commented 1 year ago

Maybe it is safer letting the bot wait every 10 minutes for 2. ? :/

Like something like this....

import random

...

class AMFBot: def init(self, twitter_user, twitter_pwd):

...

def open(self):
    bot = self.bot
    bot.get("https://www.like4like.org/")
    bot.maximize_window()
    # ...

    # Loop through the profiles
    for i in range(1, 6):
        # Click on the "Like" button
        bot.find_element(By.CSS_SELECTOR, f"#profile{i} .like-action .btn-success").click()

        # Wait for the profile to be liked
        time.sleep(random.uniform(5, 7))

        # Pause for 2 minutes every 10 minutes
        if i % 10 == 0:
            print("Pausing for 2 minutes...")
            time.sleep(120)

    ed.twtlk()

# ...