要用Python实现一个简单的爬虫,你可以使用requests库来获取网页内容,然后使用BeautifulSoup库来解析HTML并提取所需信息。以下是一个简单的示例:
- 首先,确保你已经安装了requests和beautifulsoup4库。如果没有安装,可以使用以下命令安装:
pip install requests beautifulsoup4
- 创建一个名为
simple_crawler.py
的Python文件,并在其中编写以下代码:
import requests from bs4 import BeautifulSoup def get_html(url): try: response = requests.get(url) response.raise_for_status() return response.text except requests.RequestException as e: print(f"Error while fetching URL: {e}") return None def parse_html(html): soup = BeautifulSoup(html, 'html.parser') # 提取页面中的所有链接 links = soup.find_all('a') for link in links: href = https://www.yisu.com/ask/link.get('href') print(href) def main(): url = input("Enter the URL of the webpage you want to crawl: ") html = get_html(url) if html: parse_html(html) if __name__ == "__main__": main()
- 运行这个脚本,然后输入你想要爬取的网页URL。脚本将输出该页面中的所有链接。
注意:这个示例仅适用于简单的HTML抓取。对于更复杂的网站,你可能需要使用更高级的爬虫框架,如Scrapy。此外,请确保遵循网站的robots.txt规则并遵守相关法律法规。