First of all I'm not a python expert. I'm learning python to scrape data from this specific game website. I'm trying to scrape data from a website that need login. You won't see data unless you login to this website.(I have attached a screenshot of page you will see for above website once you login) I tried to run the following code:
import requests
from bs4 import BeautifulSoup
page = requests.get('<website url>')
soup = BeautifulSoup(page.content, 'html.parser')
print(soup)
Here, I'm getting same result as if i'm not logged in to this website. Can someone guide me what I need to do?