Тема: Проблема з скрапінгом сайту
Хочу скрапити сторінки типу такої http://climatebase.ru/station/33345/from2000
Пишу
import requests
url="http://climatebase.ru/station/33345/from2000"
html_content = requests.get(url).text
print(html_content)
На виході лише
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html><head>
<META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE">
<META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE">
<META HTTP-EQUIV="REFRESH" CONTENT="1;">
<title>Browser Check Page</title>
</head><body>
<script type="text/javascript">
document.cookie = 'CHECK=0; path=/';
</script>
</body></html>
Як бути?