摘要: CSS就是Cascading Style Sheet的缩写,中文译作“层叠样式表”或者是“级联样式表”,是用于控制网页外观处理并允许将网页的表现与内容分离的一种标记性语言,CSS不需要编译,可以直接由浏览器执行(属于浏览器解释型语言),是Web网页开发技术的重要组成部分。 使用CSS样式可以有效地对 阅读全文
posted @ 2021-12-30 13:59 咖啡馆 阅读(73) 评论(0) 推荐(0) 编辑
摘要: 本文主要是记录一些HTML中的语法使用; 推荐好用的链接:https://www.w3school.com.cn/index.html HTML标准结构: <!DOCTYPE html> <!--通知浏览器使用html来解析本文--> <html lang="en"> <!--文档的开始标记,该页面 阅读全文
posted @ 2021-12-29 16:54 咖啡馆 阅读(36) 评论(0) 推荐(0) 编辑
摘要: import re """从开始位置开始匹配,如果开头没有则无""" re.match """搜索整个字符串""" re.search """搜索整个字符串,返回一个list""" re.findall """用来提取符合匹配规则的分组截获的字符串""" re.group(): 参考:https:/ 阅读全文
posted @ 2021-12-27 17:30 咖啡馆 阅读(23) 评论(0) 推荐(0) 编辑
摘要: import datetime import time """获取当前时间时间戳""" print(time.time()) """获取当前时间:Mon Dec 27 14:00:06 2021""" print(time.strftime("%a %b %d %H:%M:%S %Y", time. 阅读全文
posted @ 2021-12-27 14:06 咖啡馆 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 说明: configparser模块是用来解析ini配置文件的解析器,可以包含一个或多个节,每个节可以有多个参数(键=值)。 创建配置文件: import configparser #配置文件 config = configparser.ConfigParser() """生成configparse 阅读全文
posted @ 2021-12-27 11:13 咖啡馆 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 示例一: """ 获取福田汽车新闻咨询标题 """ import requests from bs4 import BeautifulSoup res = requests.get("https://www.foton.com.cn/webback/news/newsList") text = re 阅读全文
posted @ 2021-12-20 15:29 咖啡馆 阅读(46) 评论(0) 推荐(0) 编辑
摘要: import threading import pymysql from dbutils.pooled_db import PooledDB MYSQL_DB_POOL = PooledDB( creator=pymysql, # 使用链接数据库的模块 maxconnections=5, # 连接池 阅读全文
posted @ 2021-12-17 11:26 咖啡馆 阅读(193) 评论(0) 推荐(0) 编辑
摘要: Mysql事务特性见:mysql-事务 python 对事务的操作: import pymysql ## 链接数据库 conn = pymysql.connect(user='root', password='123', host='127.0.0.1', port=3306, charset='u 阅读全文
posted @ 2021-12-17 10:04 咖啡馆 阅读(722) 评论(0) 推荐(0) 编辑
摘要: 事务的四大特性: 原子性(Atomicity): 一个事务(transaction)中的所有操作,要么全部完成,要么全部不完成,不会结束在中间某个环节。事务在执行过程中发生错误,会被回滚(Rollback)到事务开始前的状态,就像这个事务从来没有执行过一样。 一致性(Consistency): 在事 阅读全文
posted @ 2021-12-17 09:46 咖啡馆 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 创建账号: create user 'yy'@'127.0.0.1' identified by '123'; 删除用户: drop user 'yy'@'127.0.0.1'; 修改用户: rename user 'yy'@'127.0.0.1' to 'zz'@'10.10.80.44'; 授权 阅读全文
posted @ 2021-12-16 14:22 咖啡馆 阅读(29) 评论(0) 推荐(0) 编辑