一个简单的爬虫case1
Posted bernieloveslife
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了一个简单的爬虫case1相关的知识,希望对你有一定的参考价值。
目标是把这里的所有东西下载下来:
http://ftp.sjtu.edu.cn/archlinux/core/os/x86_64/
直接看代码吧,也没啥好说的。
import requests
from bs4 import BeautifulSoup
import os
url = ‘http://ftp.sjtu.edu.cn/archlinux/core/os/x86_64/‘
r = requests.get(url)
root = ‘./crawl‘
soup = BeautifulSoup(r.text,"html.parser")
count = 0
if not os.path.exists(root):
os.mkdir(root)
for link in soup.find_all("a"):
name = link.get(‘href‘)
path = root + ‘/‘+ name
if not os.path.exists(path):
r = requests.get(url + name)
with open(path, "wb") as f:
f.write(r.content)
f.close()
count += 1
print(count)
print("finished")
以上是关于一个简单的爬虫case1的主要内容,如果未能解决你的问题,请参考以下文章
爬虫遇到头疼的验证码?Python实战讲解弹窗处理和验证码识别
Python练习册 第 0013 题: 用 Python 写一个爬图片的程序,爬 这个链接里的日本妹子图片 :-),(http://tieba.baidu.com/p/2166231880)(代码片段