2024年12月5日

python - sqlachemy

摘要: 这是一个 ORM 框架(已经包含连接池) 安装插件 pip install pymysql sqlalchemy 参数配置 from sqlalchemy import create_engine, text # 定义数据库连接字符串 DATABASE_URI = 'mysql+pymysql:// 阅读全文

posted @ 2024-12-05 17:50 疯狂的妞妞 阅读(5) 评论(0) 推荐(0) 编辑

python - mysql交互

摘要: python 与 mysql 交互,能找到两个库 pymysql 和 mysql-connector-python 因为两个都是基于 DB-API 2.0 标准‌,使用上差别并不大,区别就是 mysql-connector-python 是由 Oracle 官方提供,性能可能会好一些。 安装依赖 p 阅读全文

posted @ 2024-12-05 17:39 疯狂的妞妞 阅读(6) 评论(0) 推荐(0) 编辑

python - logger

摘要: 日志配置 import logging from logging.handlers import TimedRotatingFileHandler # NOTSET < DEBUG < INFO < WARNING < ERROR < CRITICAL # 创建一个 logger logger = 阅读全文

posted @ 2024-12-05 17:34 疯狂的妞妞 阅读(8) 评论(0) 推荐(0) 编辑

python - 安装pip插件

摘要: 功能:安装各种插件,功能与 maven 类似 windows 环境下,安装包中自带这个插件,检查路径 ./Scripts,如果包含 pip.exe 文件,则无须安装 安装 官网:https://pip.pypa.io/en/stable/installation/ Download the scri 阅读全文

posted @ 2024-12-05 17:19 疯狂的妞妞 阅读(9) 评论(0) 推荐(0) 编辑

python - with

摘要: with 用法很像 java 中的 try(){} 代码块,调用对象之后,会自动执行资源释放函数。 在 python 中,要使用 with 语句,需要实现两个特殊方法:__enter__和__exit__。 比如: class Session: def __enter__(self): print( 阅读全文

posted @ 2024-12-05 17:13 疯狂的妞妞 阅读(2) 评论(0) 推荐(0) 编辑

导航