python3 BeautifulSoup模块使用字典的方法抓取a标签内的数据示例
作者:weixin_34351321 时间:2022-12-24 23:49:30
本文实例讲述了python3 BeautifulSoup模块使用字典的方法抓取a标签内的数据。分享给大家供大家参考,具体如下:
# -*- coding:utf-8 -*-
#python 2.7
#XiaoDeng
#http://tieba.baidu.com/p/2460150866
#标签操作
from bs4 import BeautifulSoup
import urllib.request
import re
#如果是网址,可以用这个办法来读取网页
#html_doc = "http://tieba.baidu.com/p/2460150866"
#req = urllib.request.Request(html_doc)
#webpage = urllib.request.urlopen(req)
#html = webpage.read()
html="""
<html><head><title>The Dormouse's story</title></head>
<body>
<p class="title" name="dromouse"><b>The Dormouse's story</b></p>
<p class="story">Once upon a time there were three little sisters; and their names were
<a href="http://example.com/elsie" rel="external nofollow" rel="external nofollow" class="sister" id="xiaodeng"><!-- Elsie --></a>,
<a href="http://example.com/lacie" rel="external nofollow" rel="external nofollow" class="sister" id="link2">Lacie</a> and
<a href="http://example.com/tillie" rel="external nofollow" class="sister" id="link3">Tillie</a>;
<a href="http://example.com/lacie" rel="external nofollow" rel="external nofollow" class="sister" id="xiaodeng">Lacie</a>
and they lived at the bottom of a well.</p>
<p class="story">...</p>
"""
soup = BeautifulSoup(html, 'html.parser') #文档对象
#查找a标签,只会查找出一个a标签
#print(soup.a)#<a class="sister" href="http://example.com/elsie" rel="external nofollow" rel="external nofollow" id="xiaodeng"><!-- Elsie --></a>
for k in soup.find_all('a'):
print(k)
print(k['class'])#查a标签的class属性
print(k['id'])#查a标签的id值
print(k['href'])#查a标签的href值
print(k.string)#查a标签的string
#如果,标签中含有其他标签,比如..,此时要提取中的数据,需要用k.get_text()
#tag.get('calss'),也可以达到这个效果
Python Socket编程技巧总结》、《Python正则表达式用法总结》、《Python数据结构与算法教程》、《Python函数使用技巧总结》、《Python字符串操作技巧汇总》、《Python入门与进阶经典教程》及《Python文件与目录操作技巧汇总》
希望本文所述对大家Python程序设计有所帮助。
来源:https://blog.csdn.net/weixin_34351321/article/details/85830947
标签:python3,BeautifulSoup,抓取
0
投稿
猜你喜欢
vue+vux实现移动端文件上传样式
2024-05-02 16:34:40
深入分析python中整型不会溢出问题
2022-11-20 01:19:13
python3将变量输入的简单实例
2022-11-24 13:52:22
Python 操作Excel-openpyxl模块用法实例
2021-01-20 09:29:34
python调试神器PySnooper的使用
2021-08-28 23:25:49
line-height 属性的继承问题
2008-07-26 12:27:00
SQL Server 数据库索引其索引的小技巧
2012-07-11 15:55:02
jQuery页面滚动浮动层智能定位实例代码
2024-04-22 22:22:16
[js效果] 图片加载进度实时显示
2007-09-12 19:27:00
Python分割单词和转换命名法的实现
2023-11-24 00:06:16
python绘制超炫酷动态Julia集示例
2023-10-04 12:58:49
细化解析:MySQL+Webmin轻松创建数据库
2009-01-14 13:13:00
python ddt实现数据驱动
2021-11-11 02:37:08
举例简单讲解Python中的数据存储模块shelve的用法
2022-10-12 04:23:55
python清除字符串前后空格函数的方法
2023-10-14 07:12:57
python中opencv实现图片文本倾斜校正
2023-08-27 11:07:03
详解eslint在vue中如何使用
2023-07-02 16:58:58
详解用python写一个抽奖程序
2023-07-06 10:28:12
学会sql数据库关系图(Petshop)
2012-10-07 10:34:49
详解Vue组件之间的数据通信实例
2024-06-05 09:20:15