I am new to Python and web scraping. I am trying to scrape articles from a website but getting "406 Not Acceptable" when I run this code. Please help.
from requests import get
source_site_home_page = "https://www.readlightnovel.org/"
r = get(source_site_home_page)
print(r.text)