给我一端python蠕虫代码
时间: 2023-10-17 20:30:09 浏览: 68
以下是一个简单的Python蠕虫代码,用于爬取网页上的内容:
```python
import requests
from bs4 import BeautifulSoup
def crawl(url):
response = requests.get(url)
soup = BeautifulSoup(response.text, 'html.parser')
for link in soup.find_all('a'):
print(link.get('href'))
crawl('https://www.example.com')
```
该代码使用requests库和BeautifulSoup库来获取网页内容和解析HTML。它会打印出网页中所有的链接。请注意,这只是一个示例代码,实际使用时需要考虑到网站的robots.txt文件和使用合法的爬取方式。
阅读全文