I would like to scrape some ads for personal use from mobile.de.
I am using python 3.6 with requests lib, but I am facing issue with some bot inspection. How could I pass this gateway from their website?
import requests
from bs4 import BeautifulSoup
r = requests.get("https://www.mobile.de/?lang=en")
bs = BeautifulSoup(r.content, 'lxml')
print(bs)
This part of code displays me following:
<p>To continue your browser has to accept cookies and has to have JavaScript enabled.</p>
Where can I find the logic that I need to solve in order to pass this?