I'm very new to web scraping and and as a first project(in order to learn) I wanted to create a database for house prices. Later on I'm going to feed it to ML algorithms to see if I'm going to be able to predict the prices but I cannot fetch the page. I'm getting this:
In [1]: fetch("https://www.sahibinden.com")
2020-11-07 01:37:34 [scrapy.core.engine] INFO: Spider opened
2020-11-07 01:37:34 [scrapy.downloadermiddlewares.retry] DEBUG: Retrying <GET https://www.sahibinden.com> (failed 1 times): 429 Unknown Status
2020-11-07 01:37:34 [scrapy.downloadermiddlewares.retry] DEBUG: Retrying <GET https://www.sahibinden.com> (failed 2 times): 429 Unknown Status
2020-11-07 01:37:34 [scrapy.downloadermiddlewares.retry] ERROR: Gave up retrying <GET https://www.sahibinden.com> (failed 3 times): 429 Unknown Status
2020-11-07 01:37:34 [scrapy.core.engine] DEBUG: Crawled (429) <GET https://www.sahibinden.com> (referer: None)
The last Crawled (429)
message yields an error page. That's obviously not the page I'm looking for.
I'm getting 200 from any other website. Only this website is problematic. Is there a way to fix this?