You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 7, 2024. It is now read-only.
i have issues on the email verification code whenever i try to put it on instagram, it says that it's wrong.
does instagram detect automation?
do you kbnow some tricks to help me?
i have issues on the email verification code whenever i try to put it on instagram, it says that it's wrong.
does instagram detect automation?
do you kbnow some tricks to help me?
use beautifulsoup
from bs4 import BeautifulSoup
code = []
def check():
g = 0
while g == 0:
try:
time.sleep(5)
htm = str(driver.page_source)
soup = BeautifulSoup(htm , "html.parser")
for i in soup.select("span"):
if g == 0:
if "is your Instagram code" in i.text:
b = i.text.split(" ")
code.append(b[0])
print(code[0])
g += 1
except:
check()
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi, Does this repo work? I tried requests bot and got error 405. I think the url to send request has been changed.
The text was updated successfully, but these errors were encountered: