上一页 1 2 3 4 5 6 7 8 9 10 ··· 49 下一页
摘要: import pymysql # 获取连接 conn = pymysql.connect( host='10.105.212.1', port=3306, user='root', password='DemoDemo', database='db', charset='utf8' ) cursor 阅读全文
posted @ 2023-03-26 23:25 LeoShi2020 阅读(89) 评论(0) 推荐(0) 编辑
摘要: 1. 手工新增 import pymysql # 获取连接 conn = pymysql.connect( host='10.105.212.1', port=3306, user='root', password='DemoDemo', database='db', charset='utf8' 阅读全文
posted @ 2023-03-26 23:23 LeoShi2020 阅读(42) 评论(0) 推荐(0) 编辑
摘要: import pymysql # 获取连接 conn = pymysql.connect( host='10.105.212.1', port=3306, user='root', password='root@Twitt3r.com', database='db', charset='utf8' 阅读全文
posted @ 2023-03-26 23:16 LeoShi2020 阅读(151) 评论(0) 推荐(0) 编辑
摘要: import pymysql # 获取连接 conn = pymysql.connect( host='10.105.212.1', port=3306, user='root', password='DemoDemo', database='db', charset='utf8' ) # 获取游标 阅读全文
posted @ 2023-03-26 23:08 LeoShi2020 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 1. 手动实现 ''' - 进入with语句块时,就会执行文件类的`__enter__`返回一个文件对象,并赋值给变量 `f` - 从with语句块出来时,机会执行文件类的`__exit__`,在其内部实现 f.close(),所以使用者就不需要在手动关闭文件对象了。 ''' class MyFil 阅读全文
posted @ 2023-03-26 22:22 LeoShi2020 阅读(18) 评论(0) 推荐(0) 编辑
摘要: from fastapi import Depends, FastAPI app = FastAPI(title="依赖注入yield", description="在路径操作函数结束时,会自动关闭db连接回收资源。及时在路径函数会出现异常报错,最终也会关闭连接。") def get_db(): d 阅读全文
posted @ 2023-03-26 22:14 LeoShi2020 阅读(20) 评论(0) 推荐(0) 编辑
摘要: from fastapi import Depends, FastAPI app = FastAPI(title="基于对象的依赖注入", description="检查指定的文本是否在查询参数q中") class FixedContentQueryChecker: def __init__(sel 阅读全文
posted @ 2023-03-26 21:59 LeoShi2020 阅读(34) 评论(0) 推荐(0) 编辑
摘要: from fastapi import Depends, FastAPI app = FastAPI() ''' 基于类的依赖注入 ''' BOOKS = [{"id": i, "name": f"book{i}", "status": i % 4 != 0} for i in range(1, 1 阅读全文
posted @ 2023-03-26 21:41 LeoShi2020 阅读(32) 评论(0) 推荐(0) 编辑
摘要: 1. 路径装饰器 from fastapi import FastAPI, Header, HTTPException, Depends,status app = FastAPI() def verify_token(x_token: str = Header()): if x_token != " 阅读全文
posted @ 2023-03-26 21:03 LeoShi2020 阅读(113) 评论(0) 推荐(0) 编辑
摘要: from fastapi import Depends, FastAPI app = FastAPI() ''' 依赖注入缓存现象 - 依赖条件`get_num`被依赖了两次,但是你会发现其内部打印语句只打印了一次。也就是说, 第二次使用这个依赖条件时FastAPI并没有真正执行这个函数,而是直接使 阅读全文
posted @ 2023-03-26 20:46 LeoShi2020 阅读(174) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 49 下一页