Issue
This Content is from Stack Overflow. Question asked by Jamesik01
When I run the python program on replit the following error is made: Request returns 429 error! Is there any way I can fix this?
from instabot import Bot
import time
import shutil
from os import path
if path.isdir("config"):
shutil.rmtree("config")
username = input("enter username: ")
password = input("enter passwrd: ")
bot = Bot()
time.sleep(2)
bot.login(username=username, password=password)
time.sleep(2)
print("logged in")
Solution
This question is not yet answered, be the first one who answer using the comment. Later the confirmed answer will be published as the solution.
This Question and Answer are collected from stackoverflow and tested by JTuto community, is licensed under the terms of CC BY-SA 2.5. - CC BY-SA 3.0. - CC BY-SA 4.0.