摘要: Python的orm数据存储有三大类型: pymysl,sqlachemy,peewee 安装: pip install pymysql【解决peewee的驱动依赖问题】 pip install peewee peewee的具体实现如下: from peewee import * db = MySQ 阅读全文
posted @ 2020-07-17 21:05 topass123 阅读(135) 评论(0) 推荐(0) 编辑
摘要: 基本语法: 代码实现: html = """ <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>bobby基本信息</title> <script src="//code.jquery.com/jquery-1 阅读全文
posted @ 2020-07-17 15:12 topass123 阅读(504) 评论(0) 推荐(0) 编辑
摘要: 什么是xpath 1】xpath使用路径表达式在xml和html中进行导航 2】xpath包含标准库 3】xpath是一个w3c的标准 在本文将会利用scrapy的select实现。故而将会安装以下的依赖包 pip install twisted pip install lxml pip insta 阅读全文
posted @ 2020-07-17 15:02 topass123 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 资料准备: from bs4 import BeautifulSoup html = """ <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>bobby基本信息</title> <script src="// 阅读全文
posted @ 2020-07-17 14:11 topass123 阅读(86) 评论(0) 推荐(0) 编辑
摘要: import re # info = "姓名:bobby1987 生日:1987年10月1日 本科:2005年9月1日" # # # print(re.findall("\d{4}", info)) # match_result = re.match(".*生日.*?(\d{4}).*本科.*?(\ 阅读全文
posted @ 2020-07-17 10:21 topass123 阅读(79) 评论(0) 推荐(0) 编辑