import requests
from bs4 import BeautifulSoup
URL="https://kissanime.to"
page = requests.get(URL)
Code = BeautifulSoup(page.content,"html.parser")
print Code.title
This is the output
<title>Please wait 5 seconds...</title>
Every time i request from this site this is the only thing i get. Is there a way to get around this and get the HTML code from the actual site?
I want to get:
<title>KissAnime - Watch anime online in high quality</title>