Im trying to read large website data but im facing this MemoryError exception
import requests
requests.urllib3.disable_warnings()
search_page = "http://www.yachtworld.co.uk/core/listing/cache/searchResults.jsp?ps=99999"
y = requests.get(search_page, timeout=999999, stream=True)
result = y.text
I face MemoryError
Exception when i try to read from result
variable which is the output of the page,
Is there anyway to read the whole data without facing this exception,
Thanks.