Mar-07-2020, 11:52 PM
When scraping a long web page the printed results get cut truncated. Any advice?
import requests from bs4 import BeautifulSoup URL = 'https://www.mobileread.com/forums/showthread.php?t=285771' page = requests.get(URL) soup = BeautifulSoup(page.content, 'html.parser') print(soup.text)