1 Star 0 Fork 0

周欣/爬虫zy

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
5.2 1.17 KB
一键复制 编辑 原始数据 按行查看 历史
周欣 提交于 2021-09-23 06:57 . add 5.2.
import requests
from bs4 import BeautifulSoup
url = 'https://ssr1.scrape.center/'
res = requests.get(url)
print(res.status_code)
html = res.text
soup = BeautifulSoup(html,'html.parser')
# 书名
for i in soup.find_all('h2',class_='m-b-sm'):
print(i.string)
# 剧情
for i in soup.find_all('button'):
print(i.span.string)
# 中国大陆和时间
for i in soup.find_all('div',class_='m-v-sm info'):
print(i.span.string)
# 评分
for i in soup.find_all('p',class_='score m-t-md m-b-n-sm'):
print(i.string)
200
霸王别姬 - Farewell My Concubine
这个杀手不太冷 - Léon
肖申克的救赎 - The Shawshank Redemption
泰坦尼克号 - Titanic
罗马假日 - Roman Holiday
唐伯虎点秋香 - Flirting Scholar
乱世佳人 - Gone with the Wind
喜剧之王 - The King of Comedy
楚门的世界 - The Truman Show
狮子王 - The Lion King
剧情
爱情
剧情
动作
犯罪
剧情
犯罪
剧情
爱情
灾难
剧情
喜剧
爱情
喜剧
爱情
古装
剧情
爱情
历史
战争
剧情
喜剧
爱情
剧情
科幻
动画
歌舞
冒险
9.5
9.5
9.5
9.5
9.5
9.5
9.5
9.5
9.0
9.5
9.5
9.0
9.0
9.0
9.0
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhou-xin607/zx2.git
git@gitee.com:zhou-xin607/zx2.git
zhou-xin607
zx2
爬虫zy
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385