我正在使用以下3個內容閱讀網站內容。我使用了一個沒有太多內容的示例域名。通過「請求」獲取HTML內容的Python返回部分響應
url = "http://localbusiness.com/"
response = requests.get(url)
html = response.text
它返回以下html內容,其中當您檢查視圖源時,網站包含更多html。我在這裏做得不對
Python版本2.7
<html><head></head><body><!-- vbe --></body></html>
這個伎倆。謝謝。 – rclakmal