学习日记 使用BeautifulSoup爬取小说
半个月前入坑了Python,近几天看到csdn上有一些关于美丽的汤(BeautifulSoup)的介绍和使用方法,于是自己也试着写了一个爬虫。 小白的学习日记,若有不当之处,欢迎大神们指点! 使用python版本:python3.8 随便在网上搜了个小说,试着爬下来。 小说链接 # coding=utf-8 #!/usr/bin/env python from bs4 import BeautifulSoup import requests url = 'https://www.17k.com/chapter/2946744/36993678.html' headers = {'User-A
用户评论