-
常见文档读取
查看全部 -
python操作mysql1
查看全部 -
python操作mysql
查看全部 -
from urllib.request import urlopen from bs4 import BeautifulSoup as bs import pymysql.cursors # 打开链接并读取,把结果用utf-8编码 resp = urlopen("http://www.umei.cc/bizhitupian/meinvbizhi/").read().decode("utf-8") # 使用html.parser解析器 soup = bs(resp,"html.parser") # 格式化输出 #print(soup.prettify()) #print(soup.img) # 获取img标签 #print(soup.find_all('img')) # 获取所有img标签信息 for link in soup.find_all('img'): # 从文档中找到所有img标签的链接 #print(link.get('src')) #print(link.get('title')) # 获取数据库连接 connection = pymysql.connect(host="localhost", user="root", password="root", db="python_mysql", charset="utf8mb4") try: #获取会话指针 with connection.cursor() as cursor: #创建sql语句 sql = "insert into `girl_image`(`title`, `urlhref`) values (%s, %s)" # 执行sql语句 cursor.execute(sql, (str(link.get('title')), link.get('src'))) #提交 connection.commit() finally: connection.close()
查看全部 -
Python操作mysql步骤3
查看全部 -
Python操作mysql使用步骤2
查看全部 -
Python操作mysql使用步骤
查看全部 -
存储数据到MySQL
查看全部 -
beautiful soup
www.crummy.com/software/BeautifulSoup/#Download
查找修改树形结构,提供一些工具,可以解析文档
默认Unicode,utf-8
支持lxml和html5lib解析器
文档地址:https://www.crummy.com/software/BeautifulSoup/bs4/doc.zh/#id4
查看全部 -
urllib使用post方式
查看全部 -
urllib使用POST方式发送数据
查看全部 -
模拟浏览器 携带User-Agent头
req = request.Request(url)
req.add_header(key, value)
resp = request.urlopen(req)
print(resp.read().decode("utf-8"))
查看全部 -
urllib库的使用步骤
查看全部 -
urllib的用法
查看全部 -
安装BeautifulSoup4
查看全部
举报
0/150
提交
取消